From 572a335c38da7d7ca5fb512e9a4f0e774f168330 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sun, 24 Apr 2022 09:40:38 +0200 Subject: [PATCH] curl: fix cmake --- 3rdparty/curl/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/curl/CMakeLists.txt b/3rdparty/curl/CMakeLists.txt index 6f19710b41..8e7183b7cc 100644 --- a/3rdparty/curl/CMakeLists.txt +++ b/3rdparty/curl/CMakeLists.txt @@ -9,7 +9,7 @@ else() message("-- RPCS3: building libcurl + wolfssl submodules") add_compile_definitions(HAVE_SNI OPENSSL_EXTRA) option(BUILD_CURL_EXE "Set to ON to build curl executable." OFF) - option(CMAKE_USE_WOLFSSL "enable wolfSSL for SSL/TLS" ON) + option(CURL_USE_WOLFSSL "enable wolfSSL for SSL/TLS" ON) option(HTTP_ONLY "disables all protocols except HTTP (This overrides all CURL_DISABLE_* options)" ON) option(CURL_ZLIB "Set to ON to enable building curl with zlib support." OFF) set(CURL_CA_PATH "none" CACHE STRING "Location of default CA path. Set 'none' to disable or 'auto' for auto-detection. Defaults to 'auto'.")