*Edit: I got CURL working in VS 2017 on a 64 bit machine following these steps (see below for original problem):
First install vcpkg:
- Clone vcpkg using gitbash into
C:Program Files
- In a command prompt navigate to
C:Program Filesvcpkg
- Run in the command prompt:
.ootstrap-vcpkg.bat
- Run in the command prompt:
vcpkg integrate install
Then use vcpkg and Visual Studios 2017 command prompt to install cURL:
- Open a
VS 2017 Command prompt
and navigate to the vcpkg folder (where thevcpkg.exe
is) Run:
vcpkg install curl[*]:x64-windows
(note this can take around a half hour to download and run, don't worry if it looks like it is "stuck" at parts).*Edit: previously my instructions said to run
vcpkg install curl:x64-windows
but I added on the[*]
at the behest of @i7clock to enable sftp and scp protocols.After this step, you should check to make sure that curl installed correctly. To do this you should create a new project in VS 2017 and try and include
#include curl/curl.h
without adding any additional include directories. If you cannot do this then something went wrong with your install of curl. You should remove curl (and perhaps even the vcpkg folder and do a clean install) until you can includecurl/curl.h
.*Important Note: this will only work if you are using x64 debugger/compiling in x64! If you cannot include the curl directory check to make sure your debug is set to the correct version of Windows.
You may need to disable SSL peer verification as well:
- Place the code
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
before the request (see below). Note this is only necessary because I could not figure how to get certificates to work with curl. I have an as-of-yet unanswered stackoverflow post regarding this problem here.
Here are some other steps you may need to try to get things running, but I ended up finding them not necessary:
- Navigate to vcpkgpackagescurl_x64-windowslib to find the libcurl.lib file.
- Include the path to libcurl.lib in Additional Library Directories under Properties -> Linker
- Included libcurl.lib in Additional Dependencies under Linker -> Input -> Additional Dependencies
- Place
CURL_STATICLIB
in Properties -> C/C++ -> Preprocessor -> Preprocessor Definitions
Here is my now working code:
#include "curl/curl.h"
void testCurl() {
CURL *curl;
CURLcode res;
curl_global_init(CURL_GLOBAL_ALL);
curl = curl_easy_init();
if (curl) {
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/");
#ifdef SKIP_PEER_VERIFICATION
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
#endif
#ifdef SKIP_HOSTNAME_VERIFICATION
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
#endif
res = curl_easy_perform(curl);
if (res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s
",
curl_easy_strerror(res));
curl_easy_cleanup(curl);
}
curl_global_cleanup();
}
int main(){
testCurl();
return 0;
}
*Edit: Here is the rest of the explanation of my old problem before it was fixed:
I am trying to use cURL to make an API call so I can start getting real time stock data, but I am running into difficulties getting it to function in VS 2017. I have attempted an install using vcpckg using the following steps:
According to vcpkg documentation I should be able to now simply #include , but it can't find the folder. If I try including the "include" directory from vcpkgpackagescurl_x86include and #include I can build my project. I can also access some of the classes, but if I try and set the curl_global_init(CURL_GLOBAL_DEFAULT) as in this example I get linker errors.
See Question&Answers more detail:os