I'm having trouble getting LibCurl to work with Visual Studio 2013. I downloaded the current version (curl-7.33.0) and tried to follow the instructions I found on this site: Using LibCurl with Visual 2010
But I can not find curllib.lib in the downloaded folder. And I still get errors: 
After searching the Internet for more help. Now I get these error messages. Does the problem seem to be related to libcurl.lib?

This is what I configured: 

Inside / lib I have libcurl.lib and libcurl.dll
UPDATE
I downloaded this release for Win32 MSVC: http://curl.haxx.se/download.html#Win32 After adding the libcurl libraries and successfully compiling, I get the following error message:
The application was unable to start correctly (0xc000007b). Click OK to close the application.
Here is an example of the code I'm trying to run:
#include <iostream> #include <stdio.h> #include <curl/curl.h> int main(void) { CURL *curl; CURLcode res; curl = curl_easy_init(); if (curl) { curl_easy_setopt(curl, CURLOPT_URL, "http://google.com"); res = curl_easy_perform(curl); /* always cleanup */ curl_easy_cleanup(curl); } return 0; }
FINAL UPDATE
I believe that LibCurl now works with Visual Studio 2013. Persistence ftw! Although, after spending hours trying to resolve these error messages, I say a little hesitantly that everything is working fine now. That's why I put generosity on this question to get clear and concise instructions on how LibCurl will work with Visual Studio 2013.
This is what I did to make it work:
First download the Win32 MSVC package here: http://curl.haxx.se/download.html#Win32 For these instructions, let's say you boot into C: \ LibCurl
Launch a new project in Visual Studio. Go to Project | Project Properties | VC ++ Directories | Include Directories | Add the path to the include directory inside the downloaded package. (C: \ libcurl \ include)
Then go to Project | Project Properties | Linker | General | Additional Library Directories | Add the path to the lib directory. (Where curllib.dll is located)
Then go to Project | Project Properties | Linker | Input | Additional Dependencies | And add curllib.lib
Now, if you compile a test program, you will most likely receive a message stating that libsasl.dll is missing. You will need to download this file and place it in the same directory as your assembly. I used 7-Zip to extract libsasl.dll from OpenLDAP for Windows . OpenLDAP for Windows
This is the result of my test code above: 
c ++ dll visual-c ++ libcurl
Quaxton Hale Nov 24 '13 at 4:37 2013-11-24 04:37
source share