Skip to content

Commit cbff13d

Browse files
committed
fix(build): remove zlib and openssl requirements from cpp-httplib
Signed-off-by: Luca Guerra <[email protected]>
1 parent 643d413 commit cbff13d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cmake/modules/cpp-httplib.cmake

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ option(USE_BUNDLED_CPPHTTPLIB "Enable building of the bundled cpp-httplib" ${USE
1818
if(USE_BUNDLED_CPPHTTPLIB)
1919
set(HTTPLIB_USE_BROTLI_IF_AVAILABLE OFF)
2020
set(HTTPLIB_REQUIRE_BROTLI OFF)
21+
set(HTTPLIB_USE_ZLIB_IF_AVAILABLE OFF)
22+
set(HTTPLIB_REQUIRE_ZLIB OFF)
23+
set(HTTPLIB_USE_OPENSSL_IF_AVAILABLE OFF)
24+
set(HTTPLIB_REQUIRE_OPENSSL OFF)
2125
include(FetchContent)
2226
FetchContent_Declare(
2327
cpp-httplib

0 commit comments

Comments
 (0)