CURL for C++
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.