Browse Source

changed default linking type of boost to dynamic, as otherwise g++ complains about non-relocatable code

Former-commit-id: 63ec8b7a0c [formerly bb9fffd681]
Former-commit-id: 42afbe5a81
tempestpy_adaptions
dehnert 8 years ago
parent
commit
bf68b28b26
  1. 2
      CMakeLists.txt

2
CMakeLists.txt

@ -23,7 +23,7 @@ include(RegisterSourceGroup)
option(STORM_DEVELOPER "Sets whether the development mode is used" OFF)
option(STORM_USE_POPCNT "Sets whether the popcnt instruction is going to be used." ON)
MARK_AS_ADVANCED(STORM_USE_POPCNT)
option(USE_BOOST_STATIC_LIBRARIES "Sets whether the Boost libraries should be linked statically." ON)
option(USE_BOOST_STATIC_LIBRARIES "Sets whether the Boost libraries should be linked statically." OFF)
option(STORM_USE_INTELTBB "Sets whether the Intel TBB libraries should be used." OFF)
option(STORM_USE_GUROBI "Sets whether Gurobi should be used." OFF)
option(STORM_USE_COTIRE "Sets whether Cotire should be used (for building precompiled headers)." OFF)

Loading…
Cancel
Save