From 8735a85a3008df39b92b0a6781015011d8935a7b Mon Sep 17 00:00:00 2001 From: sfan5 Date: Fri, 6 May 2022 14:42:56 +0200 Subject: Declare all bundled libs as static Otherwise it can happen that these are built as shared depending on the options passed to CMake, which obviously isn't intended. --- lib/gmp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/gmp/CMakeLists.txt') diff --git a/lib/gmp/CMakeLists.txt b/lib/gmp/CMakeLists.txt index 884c4d389..f0604a43d 100644 --- a/lib/gmp/CMakeLists.txt +++ b/lib/gmp/CMakeLists.txt @@ -1,3 +1,3 @@ -add_library(gmp mini-gmp.c) +add_library(gmp STATIC mini-gmp.c) target_link_libraries(gmp) -- cgit v1.2.3