From 759c947c4f5d30e8e4ea45fc1df6b26f7f868cad Mon Sep 17 00:00:00 2001 From: Tom Dewey Date: Thu, 19 Sep 2024 11:22:52 +0100 Subject: [PATCH] cmake: Disable building shared libs --- src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6eb44ff..f7fdcac 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -38,6 +38,7 @@ endif(APPLE) # Bundled code will occasionally use identical options - eg, BUILD_TESTING. set(BUILD_TESTING OFF) set(BUILD_STATIC_LIBS ON) +set(BUILD_SHARED_LIBS OFF) # Bundled liblzma set(XZ_MICROLZMA_DECODER OFF)