diff options
-rw-r--r-- | common.cmake | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/common.cmake b/common.cmake index 97de93f..f076d2d 100644 --- a/common.cmake +++ b/common.cmake @@ -32,7 +32,6 @@ elseif(CMAKE_CXX_COMPILER_ID) else() set(toolset "unknown") endif() -message(STATUS "Toolset: ${toolset}") if(toolset STREQUAL "GNU") set(is_gcc ON) @@ -60,7 +59,11 @@ if(NOT DEFINED CC_WINDOWS_DEF) option(CC_WINDOWS_DEF "Define useful Windows macros" "${default_value}") endif() if(NOT DEFINED CC_STATIC_RUNTIME) - option(CC_STATIC_RUNTIME "Link the runtime statically" "${default_value}") + set(cc_static_runtime_default "${default_value}") + if(UNIX) + set(cc_static_runtime_default OFF) + endif() + option(CC_STATIC_RUNTIME "Link the runtime statically" "${cc_static_runtime_default}") endif() if(NOT DEFINED CC_STRIP_SYMBOLS) option(CC_STRIP_SYMBOLS "Strip debug symbols" "${default_value}") @@ -69,6 +72,7 @@ endif() option(Boost_USE_STATIC_LIBS "Use the static Boost libraries" "${default_value}") option(Boost_USE_STATIC_RUNTIME "Use Boost libraries linked to the runtime statically" "${CC_STATIC_RUNTIME}") +message(STATUS "Toolset: ${toolset}") message(STATUS "C++ standard: ${CC_CXX_STANDARD}") message(STATUS "Set common compiler options: ${CC_BEST_PRACTICES}") message(STATUS "Define useful Windows macros: ${CC_WINDOWS_DEF}") |