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)
|
--enable-shared)
|
||||||
FLAGS+=(-DBUILD_SHARED_LIBS=ON)
|
FLAGS+=(-DBUILD_SHARED_LIBS=ON)
|
||||||
;;
|
;;
|
||||||
|
--disable-shared)
|
||||||
|
FLAGS+=(-DBUILD_SHARED_LIBS=OFF)
|
||||||
|
;;
|
||||||
--enable-static)
|
--enable-static)
|
||||||
FLAGS+=(-DBUILD_STATIC_LIBS=ON)
|
FLAGS+=(-DBUILD_STATIC_LIBS=ON)
|
||||||
;;
|
;;
|
||||||
|
--disable-static)
|
||||||
|
FLAGS+=(-DBUILD_STATIC_LIBS=OFF)
|
||||||
|
;;
|
||||||
--disable-Bsymbolic)
|
--disable-Bsymbolic)
|
||||||
FLAGS+=(-DDISABLE_BSYMBOLIC=ON)
|
FLAGS+=(-DDISABLE_BSYMBOLIC=ON)
|
||||||
;;
|
;;
|
||||||
|
|||||||
Reference in New Issue
Block a user