From 2cfd0a3726999d046837d3c8f9ad54351840040b Mon Sep 17 00:00:00 2001 From: BlackMATov Date: Fri, 30 Oct 2020 06:43:49 +0700 Subject: [PATCH] update curl to 7_73_0 --- CMakeLists.txt | 4 ++-- untests/CMakeLists.txt | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8baa754..1dfef0c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -100,7 +100,7 @@ if(USE_EMBEDDED_CURL) FetchContent_Declare( embedded_curl GIT_REPOSITORY https://github.com/curl/curl - GIT_TAG curl-7_65_1) + GIT_TAG curl-7_73_0) FetchContent_GetProperties(embedded_curl) if(NOT embedded_curl_POPULATED) @@ -118,7 +118,7 @@ if(USE_EMBEDDED_CURL) endif() if(WIN32) - set(CMAKE_USE_WINSSL ON CACHE BOOL "" FORCE) + set(CMAKE_USE_SCHANNEL ON CACHE BOOL "" FORCE) set(CURL_CA_PATH "none" CACHE STRING "" FORCE) set(CURL_CA_BUNDLE "none" CACHE STRING "" FORCE) endif() diff --git a/untests/CMakeLists.txt b/untests/CMakeLists.txt index 9e10ee8..01f0b67 100644 --- a/untests/CMakeLists.txt +++ b/untests/CMakeLists.txt @@ -73,7 +73,8 @@ endif() include(FetchContent) FetchContent_Declare( blackmatov_promise_hpp - GIT_REPOSITORY https://github.com/blackmatov/promise.hpp) + GIT_REPOSITORY https://github.com/blackmatov/promise.hpp + GIT_TAG origin/main) FetchContent_GetProperties(blackmatov_promise_hpp) if(NOT blackmatov_promise_hpp_POPULATED)