I've been trying to use LibCURL in C++ for a couple hours now, and it is really getting on my nerves. I have a feeling someone else has had a problem like this before, but I haven't found and posts that have given me a solution.
This is what I've done:
Since the libCurl download page is so confusing, I am posting exactly what I've done. First, I downloaded the file at the top (curl-7.23.1.zip), and then opened it in winRAR. I then went into the include folder, and then extracted the 'curl' folder out of there.
I then created a new project with Code::Blocks, and then moved the 'curl' folder into the same folder as my project.
I then add '#include "curl/curl.h"' to the top of my file, and then try and initialize a simple CURL var... I then get an error, saying:
...\main.cpp|22|undefined reference to `_imp__curl_easy_init'|
Here is a picture of the actual code/error:
Honestly, I think it is something very very stupid that I am doing, but I just don't know what to do.