From f2a983298ed6b716303ca6619da06522227ea209 Mon Sep 17 00:00:00 2001 From: Luca Guerra Date: Mon, 16 Dec 2024 17:07:26 +0000 Subject: [PATCH] fix(build): remove zlib requirement from cpp-httplib Signed-off-by: Luca Guerra --- cmake/modules/cpp-httplib.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/modules/cpp-httplib.cmake b/cmake/modules/cpp-httplib.cmake index 3af5cf8a..5e3f1c16 100644 --- a/cmake/modules/cpp-httplib.cmake +++ b/cmake/modules/cpp-httplib.cmake @@ -18,6 +18,8 @@ option(USE_BUNDLED_CPPHTTPLIB "Enable building of the bundled cpp-httplib" ${USE if(USE_BUNDLED_CPPHTTPLIB) set(HTTPLIB_USE_BROTLI_IF_AVAILABLE OFF) set(HTTPLIB_REQUIRE_BROTLI OFF) + set(HTTPLIB_USE_ZLIB_IF_AVAILABLE OFF) + set(HTTPLIB_REQUIRE_ZLIB OFF) include(FetchContent) FetchContent_Declare( cpp-httplib