使用CLion cmake将curlpp库添加到C ++项目

时间:2016-03-12 21:05:42

标签: c++ curl cmake clion curlpp

我在Windows 10上使用CLion和cmake系统构建。我想为http请求添加此curlpp https://github.com/jpbarrette/curlpp。我从GitHub下载lib并放入项目文件夹。接下来,我将其添加到我的CMake列表中:

add_subdirectory(curlpp-master)

Cmake throw不幸错误:

Error:Could NOT find CURL (missing: CURL_LIBRARY CURL_INCLUDE_DIR)

之后我决定添加原始C curl https://github.com/curl/curl,方法与curlpp相同。所以现在看起来像这样:

add_subdirectory(curl-7.47.1)
add_subdirectory(curlpp-master)

但是我发现同样的错误没有找到curl库。如何正确添加curlpp?

0 个答案:

没有答案