diff options
author | Brad King <brad.king@kitware.com> | 2021-02-03 16:55:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-02-03 16:58:10 (GMT) |
commit | 24f3388fa415d45a2f83cfcbcf88deee5ad469dd (patch) | |
tree | 99467724247ef86fed3e11a50b46d147ac8a604c /Utilities | |
parent | 426ef61cc8d850ad6877d0598a9917ce9a4f2b20 (diff) | |
download | CMake-24f3388fa415d45a2f83cfcbcf88deee5ad469dd.zip CMake-24f3388fa415d45a2f83cfcbcf88deee5ad469dd.tar.gz CMake-24f3388fa415d45a2f83cfcbcf88deee5ad469dd.tar.bz2 |
curl: Set build options the way we need for CMake
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmcurl/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Utilities/cmcurl/CMakeLists.txt b/Utilities/cmcurl/CMakeLists.txt index 3505533..4fb9361 100644 --- a/Utilities/cmcurl/CMakeLists.txt +++ b/Utilities/cmcurl/CMakeLists.txt @@ -20,6 +20,7 @@ set(CURL_DISABLE_IMAP ON CACHE INTERNAL "Disable curl imap protocol?") set(CURL_DISABLE_LDAP ON CACHE INTERNAL "Disable curl ldap protocol?") set(CURL_DISABLE_LDAPS ON CACHE INTERNAL "Disable curl ldaps protocol?") set(CURL_DISABLE_MQTT ON) +set(CURL_DISABLE_OPENSSL_AUTO_LOAD_CONFIG OFF) set(CURL_DISABLE_POP3 ON CACHE INTERNAL "Disable curl pop3 protocol?") set(CURL_DISABLE_PROXY OFF CACHE INTERNAL "Do not disable curl proxy") set(CURL_DISABLE_RTSP ON CACHE INTERNAL "Disable curl rtsp protocol?") @@ -45,6 +46,7 @@ set(ENABLE_UNICODE OFF) set(ENABLE_UNIX_SOCKETS OFF CACHE INTERNAL "No curl Unix domain sockets support") set(HTTP_ONLY OFF CACHE INTERNAL "Curl is not http-only") set(PICKY_COMPILER OFF CACHE INTERNAL "Enable picky compiler options") +set(USE_LIBIDN2 ON) set(USE_NGHTTP2 ON) set(USE_NGTCP2 OFF) set(USE_QUICHE OFF) |