curl mbedtls everywhere and zlib error off

This commit is contained in:
OatmealDome 2024-12-21 19:39:45 -05:00
parent cc978fd688
commit 14ace4a186
1 changed files with 2 additions and 3 deletions

View File

@ -3,18 +3,17 @@ set(BUILD_SHARED_LIBS OFF)
set(BUILD_STATIC_LIBS ON) set(BUILD_STATIC_LIBS ON)
set(BUILD_TESTS OFF) set(BUILD_TESTS OFF)
set(BUILD_EXAMPLES OFF) set(BUILD_EXAMPLES OFF)
set(CURL_ZLIB OFF) set(CURL_ENABLE_EXPORT_TARGET OFF)
if(WIN32) if(WIN32)
set(CURL_USE_SCHANNEL ON) set(CURL_USE_SCHANNEL ON)
endif() endif()
if(UNIX AND NOT APPLE) if(UNIX)
set(CURL_USE_MBEDTLS ON) set(CURL_USE_MBEDTLS ON)
endif() endif()
if(APPLE) if(APPLE)
set(CURL_USE_SECTRANSP ON)
set(USE_APPLE_IDN ON) set(USE_APPLE_IDN ON)
endif() endif()