(转)c++--使用CURL库在编译时遇到的问题

windows平台,使用libcurl,编译(link阶段)时遇到:

VS报错 
error LNK2001: unresolved external symbol __imp__curl_easy_perform 
error LNK2001: unresolved external symbol __imp__curl_easy_setopt 
error LNK2001: unresolved external symbol __imp__curl_easy_init 
error LNK2001: unresolved external symbol __imp__curl_easy_cleanup

  

  • 解决方法:

项目属性->link->input:

libcurl.lib ws2_32.lib winmm.lib wldap32.lib

 

项目属性->C/C++->Preprocessor->Definitions 增加:

 

BUILDING_LIBCURL

HTTP_ONLY

 

原文地址:http://charlescui.iteye.com/blog/855139

posted @ 2017-08-02 20:04  星月相随  阅读(701)  评论(0编辑  收藏  举报