We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3db6e5e commit 5ac538bCopy full SHA for 5ac538b
src/common/config.h
@@ -10,6 +10,12 @@
10
// WinINet is only supported on desktop.
11
#define HTTPS_BACKEND_WININET
12
#endif
13
+ // Visual Studio 2017 supports __has_include
14
+ #if defined __has_include
15
+ #if __has_include(<curl/curl.h>)
16
+ #define HTTPS_BACKEND_CURL
17
+ #endif
18
19
#elif defined(__ANDROID__)
20
#define HTTPS_BACKEND_ANDROID
21
#elif defined(__APPLE__)
0 commit comments