Created
March 30, 2021 06:54
-
-
Save prabindh/09be429c3f5d69f7103fbf67737e0c6f to your computer and use it in GitHub Desktop.
Building C++ application with static libcurl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Building C++ application with static build of libcurl: | |
/* | |
1. In the project, C++ preprocessor to be defined - "CURL_STATICLIB" | |
2. CURL itself should be built with: | |
- static option | |
- SSL static | |
- IPV6 static | |
- SSPI static | |
Lack of static SSL will cause runtime errors due to not finding libeay32.dll etc | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment