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 f0d39b7 commit cee6c58Copy full SHA for cee6c58
cmake_modules/IcebergThirdpartyToolchain.cmake
@@ -511,6 +511,12 @@ function(resolve_curl_dependency)
511
512
fetchcontent_makeavailable(CURL)
513
514
+ if(TARGET OpenSSL::SSL)
515
+ message(STATUS "Detected that vendored curl depends on OpenSSL. Adding it to the system dependency list."
516
+ )
517
+ list(APPEND ICEBERG_SYSTEM_DEPENDENCIES OpenSSL)
518
+ endif()
519
+
520
if(curl_SOURCE_DIR)
521
if(NOT TARGET CURL::libcurl)
522
add_library(CURL::libcurl INTERFACE IMPORTED)
0 commit comments