From 84df4cccc9d5a46dac60592b681a2097cebdd744 Mon Sep 17 00:00:00 2001 From: Jules Fouchy Date: Mon, 6 May 2024 14:02:07 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20[CMake]=20Fix=20OpenSSL=20versio?= =?UTF-8?q?n=20on=20MacOS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 25472dfa..7b71253e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,7 +65,7 @@ set(COOLLAB_REQUIRE_ALL_FEATURES OFF CACHE BOOL "Some features are optional, lik set(OPENSSL_USE_STATIC_LIBS TRUE) if(APPLE) - find_package(OpenSSL 3.2) # Otherwise finds 3.3 which isn't compatible with cpp-httplib + find_package(OpenSSL 3.2 EXACT) # Otherwise finds 3.3 which isn't compatible with cpp-httplib else() find_package(OpenSSL 3) endif()