|
|
@ -31,6 +31,7 @@ option(USE_BOOST_STATIC_LIBRARIES "Sets whether the Boost libraries should be li |
|
|
|
option(USE_INTELTBB "Sets whether the Intel TBB Extensions should be used." OFF) |
|
|
|
option(STORM_USE_COTIRE "Sets whether Cotire should be used (for building precompiled headers)." OFF) |
|
|
|
option(LINK_LIBCXXABI "Sets whether libc++abi should be linked." OFF) |
|
|
|
option(USE_LIBCXX "Sets whether the standard library is libc++." OFF) |
|
|
|
set(GUROBI_ROOT "" CACHE STRING "The root directory of Gurobi (if available).") |
|
|
|
set(Z3_ROOT "" CACHE STRING "The root directory of Z3 (if available).") |
|
|
|
set(ADDITIONAL_INCLUDE_DIRS "" CACHE STRING "Additional directories added to the include directories.") |
|
|
@ -138,7 +139,7 @@ else(CLANG) |
|
|
|
set (CLANG ON) |
|
|
|
# Set standard flags for clang |
|
|
|
set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops -O3") |
|
|
|
if(UNIX AND NOT APPLE) |
|
|
|
if(UNIX AND NOT APPLE AND NOT USE_LIBCXX) |
|
|
|
set(CLANG_STDLIB libstdc++) |
|
|
|
message(STATUS "StoRM - Linking against libstdc++") |
|
|
|
else() |
|
|
|