Commit 71f681ec authored by Tobias Mayer's avatar Tobias Mayer

Adjust configure script to altered cmake scaffold

parent 4f6c8804
...@@ -34,8 +34,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]... ...@@ -34,8 +34,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--with-qt-prefix=PATH prefix path for Qt5 cmake modules --with-qt-prefix=PATH prefix path for Qt5 cmake modules
--with-openssl=PATH path to OpenSSL library and headers --with-openssl=PATH path to OpenSSL library and headers
--dual-build build using both gcc and clang --dual-build build using both gcc and clang
--build-static build as static and shared library --build-static build as static library
--build-static-only build as static library only
--static-runtime build with static C++ runtime --static-runtime build with static C++ runtime
--more-warnings enables most warnings --more-warnings enables most warnings
--no-compiler-check disable compiler version check --no-compiler-check disable compiler version check
...@@ -340,10 +339,7 @@ while [ $# -ne 0 ]; do ...@@ -340,10 +339,7 @@ while [ $# -ne 0 ]; do
append_cache_entry CAF_NO_OPENSSL BOOL yes append_cache_entry CAF_NO_OPENSSL BOOL yes
;; ;;
--build-static) --build-static)
append_cache_entry CAF_BUILD_STATIC BOOL yes append_cache_entry BUILD_SHARED_LIBS BOOL no
;;
--build-static-only)
append_cache_entry CAF_BUILD_STATIC_ONLY BOOL yes
;; ;;
--static-runtime) --static-runtime)
append_cache_entry CAF_BUILD_STATIC_RUNTIME BOOL yes append_cache_entry CAF_BUILD_STATIC_RUNTIME BOOL yes
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment