How can I add libCurl to a Borland C++ Builder 6 Project?
How can I add libCurl to a Borland C++ Builder 6 Project? I tried including its directory in the project's compiler and linker search paths, then I made a lib f开发者_JAVA百科rom the libcurl dll and I added it to the project, I'm trying to get a piece of sample code to compile, but it throws on error that it doesn't find curl/curl.h
in the line #include <curl/curl.h>
. The libCurl installation did not come with a visiblecurl/curl.h
file, and I'm not a mainly C++ programmer, so I'm stuck :(
I downloaded the curl-7.19.7 zip and found curl/curl.h in the include directory there. So you’ll have to add curl-7.19.7\include to your include paths for it to see curl/curl.h
精彩评论