0
votes

I've been trying to get curl linked to my project in Visual Studio 2013 and C++, however all tutorials online reference files that are not available anywhere in the archives you can download from their website. What I did was I went to http://curl.haxx.se/latest.cgi?curl=win32-ssl-devel-msvc and downloaded the package. All tutorials reference either a lib/Debug folder or some .dll or .lib files which just simply aren't there. The documentation on their website is from 2002, so that won't help either.

Could anyone explain which version I need to download and what I need to reference in my project properties and where? Thanks!

1
The link you provided lets you select from several packages. Which one did you download?molbdnilo
@molbdnilo The generic source (7.41.0)Qub1
@thinkerou I did, and they refer to the file curllib.dll which is not in any of the packages I downloadedQub1

1 Answers

0
votes

Ok fixed it, had to build the libcurl.lib file from source. Changed build type to LIB Release and it worked! Thanks.