Merge pull request #8984 from r2dliu/curl

Curl: For windows cmake builds, build curl with schannel/winssl capability
This commit is contained in:
LC
2020-07-28 19:26:43 -04:00
committed by GitHub

View File

@ -1,5 +1,7 @@
if(NOT CMAKE_SYSTEM_NAME MATCHES "Windows")
add_definitions(-DHAVE_CONFIG_H)
if(CMAKE_SYSTEM_NAME MATCHES "Windows")
add_definitions(-DUSE_SCHANNEL -DUSE_WINDOWS_SSPI)
else()
add_definitions(-DHAVE_CONFIG_H)
endif()
include_directories(.)