0

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 from 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 :(

4

1 回答 1

1

我下载了 curl-7.19.7 zip 并在那里的包含目录中找到了 curl/curl.h。因此,您必须将 curl-7.19.7\include 添加到您的包含路径中才能看到 curl/curl.h

于 2009-12-03T17:47:15.220 回答