Browse Source

Add --disable-static and --disable-dynamic options to the cmake-configure script.

tags/json-c-0.17-20230812
Eric Haszlakiewicz 3 years ago
parent
commit
86b46cac07
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      cmake-configure

+ 6
- 0
cmake-configure View File

@@ -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)
;;


Loading…
Cancel
Save