Browse Source

Merge.

Former-commit-id: 572cdb80fc
tempestpy_adaptions
dehnert 11 years ago
parent
commit
2e570f6311
  1. 16
      CMakeLists.txt

16
CMakeLists.txt

@ -264,6 +264,9 @@ endif(ADDITIONAL_LINK_DIRS)
if (ENABLE_GUROBI) if (ENABLE_GUROBI)
link_directories("${GUROBI_ROOT}/lib") link_directories("${GUROBI_ROOT}/lib")
endif() endif()
if (ENABLE_Z3)
link_directories("${Z3_ROOT}/bin")
endif()
if ((NOT Boost_LIBRARY_DIRS) OR ("${Boost_LIBRARY_DIRS}" STREQUAL "")) if ((NOT Boost_LIBRARY_DIRS) OR ("${Boost_LIBRARY_DIRS}" STREQUAL ""))
set(Boost_LIBRARY_DIRS "${Boost_INCLUDE_DIRS}/stage/lib") set(Boost_LIBRARY_DIRS "${Boost_INCLUDE_DIRS}/stage/lib")
endif () endif ()
@ -336,6 +339,19 @@ if (ENABLE_GUROBI)
target_link_libraries(storm-performance-tests "gurobi55") target_link_libraries(storm-performance-tests "gurobi55")
endif(ENABLE_GUROBI) endif(ENABLE_GUROBI)
#############################################################
##
## Z3 (optional)
##
#############################################################
if (ENABLE_Z3)
message (STATUS "StoRM - Linking with Z3")
include_directories("${Z3_ROOT}/include")
target_link_libraries(storm "z3")
target_link_libraries(storm-functional-tests "z3")
target_link_libraries(storm-performance-tests "z3")
endif(ENABLE_Z3)
############################################################# #############################################################
## ##
## Google Test gtest ## Google Test gtest

Loading…
Cancel
Save