mirror of
https://github.com/json-c/json-c.git
synced 2026-03-23 15:09:07 +08:00
Add --disable-static and --disable-dynamic options to the cmake-configure script.
This commit is contained in:
@@ -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)
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user