I'm trying to add libcurl to a C project in Visual Studio 2010. I was able to find a .lib file, but I still get the following error message:
Cannot open include file: 'curl/curl.h'
I've tried adding the file to Properties->Linker->Input->Additional Dependencies, and I've tried adding
#pragma comment(lib, "LIBCURL.LIB")
to the file in question, but the error still remains. What am I missing?