From 159d6a8a7689a2040b9271efd5566e462df6fe4c Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Fri, 29 Dec 2023 17:31:11 +0100 Subject: [PATCH] Build: Disable building zlib for non-windows - closes https://github.com/assimp/assimp/issues/5340 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 88f69174a..4eca71955 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -137,7 +137,7 @@ IF (WIN32) ELSE() OPTION( ASSIMP_BUILD_ZLIB "Build your own zlib" - ON + OFF ) ENDIF()