CURL for C++

Posted on March 25, 2009 at 7:16 pm in

Ok I’ve been having a few issues with setting up CURL with msdev 2008. I may have made some mistakes and basically writing this down here to keep track what I’ve done so far.

1. C/C++ tab / Command Line / Additional Options:
-DCURL_STATICLIB

2. Linker, General, Additional Library Directories: Location of libcurl.lib

3. Linker, Input, Additional Dependencies: libcurl.lib Winmm.lib
Winmm.lib has a timer function necessary one of libcurls functions.

Thats all so far for getting it setup with visual studio 2008.


Top