gpt4 book ai didi

c++ - CMake : Linking cURL to my project : "cannot find -lcurl"

转载 作者:行者123 更新时间:2023-12-03 12:48:08 32 4
gpt4 key购买 nike

我想在我的项目中使用 cURL。我将其添加到我的 CMakelist 中:

include_directories(include)
link_directories(lib)
target_link_libraries(untitled curl)

这是我的项目树:

CLion file tree

当我编译(使用 MinGW)时,出现此错误:

c:/mingw/bin/../lib/gcc/mingw32/6.3.0/../../../../mingw32/bin/ld.exe: cannot find -lcurl
collect2.exe: error: ld returned 1 exit status

我认为curl没有正确链接,但我不知道我错过了什么......

最佳答案

在计算机上安装 libcurl 后,您需要这三行,一切都会好起来的。

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -lcurl")

add_executable(exec_name tests-main.cpp)
target_link_libraries(exec_name curl)

关于c++ - CMake : Linking cURL to my project : "cannot find -lcurl",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51875135/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com