Skip to content

Commit

Permalink
Fix overwriting of ca bundle (#717)
Browse files Browse the repository at this point in the history
* Fix overwriting of ca bundle
  • Loading branch information
Leon0402 authored Mar 25, 2022
1 parent c0a4122 commit 21f42cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@ else()
else()
set(CURL_CA_PATH "auto" CACHE INTERNAL "")
endif()
set(CURL_CA_BUNDLE "auto" CACHE INTERNAL "")

if(NOT DEFINED CURL_CA_BUNDLE)
set(CURL_CA_BUNDLE "auto" CACHE INTERNAL "")
endif()

if(SSL_BACKEND_USED STREQUAL "WinSSL")
set(CURL_USE_SCHANNEL ON CACHE INTERNAL "" FORCE)
Expand Down

0 comments on commit 21f42cf

Please sign in to comment.