From 86b46cac07202aef68724193a2acc4f86792bd49 Mon Sep 17 00:00:00 2001 From: Eric Haszlakiewicz Date: Mon, 30 May 2022 14:31:08 +0000 Subject: [PATCH] Add --disable-static and --disable-dynamic options to the cmake-configure script. --- cmake-configure | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmake-configure b/cmake-configure index dc695e5a..7110bd0b 100755 --- a/cmake-configure +++ b/cmake-configure @@ -65,9 +65,15 @@ while [ $# -gt 0 ] ; do --enable-shared) FLAGS+=(-DBUILD_SHARED_LIBS=ON) ;; + --disable-shared) + FLAGS+=(-DBUILD_SHARED_LIBS=OFF) + ;; --enable-static) FLAGS+=(-DBUILD_STATIC_LIBS=ON) ;; + --disable-static) + FLAGS+=(-DBUILD_STATIC_LIBS=OFF) + ;; --disable-Bsymbolic) FLAGS+=(-DDISABLE_BSYMBOLIC=ON) ;; -- 2.47.2