From ef28f2684d688dfe181681917ed6dbd2c12b8960 Mon Sep 17 00:00:00 2001 From: "Robin E.R. Davies" Date: Wed, 17 Jun 2026 11:53:12 -0400 Subject: [PATCH] Do NOT install LIBZIP files. (we use the .a file) --- modules/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt index 351e46f..6512745 100644 --- a/modules/CMakeLists.txt +++ b/modules/CMakeLists.txt @@ -28,6 +28,7 @@ option(BUILD_OSSFUZZ "Build fuzzers for ossfuzz" OFF) option(BUILD_EXAMPLES "Build examples" OFF) option(BUILD_DOC "Build documentation" OFF) -option(LIBZIP_DO_INSTALL "Install libzip and the related files" ON) +option(LIBZIP_DO_INSTALL "Install libzip and the related files" OFF) +option(BUILD_SHARED_LIBS "Build shared libraries (DLLs)." OFF) add_subdirectory("libzip")