You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

612 lines
27 KiB

  1. cmake_minimum_required (VERSION 2.8.6)
  2. # Set project name
  3. project (storm CXX C)
  4. # Add base folder for better inclusion paths
  5. include_directories("${PROJECT_SOURCE_DIR}")
  6. include_directories("${PROJECT_SOURCE_DIR}/src")
  7. # Add the version of Eigen3 in the repository to the include pathes
  8. set(EIGEN3_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/resources/3rdparty/eigen")
  9. include_directories(${EIGEN3_INCLUDE_DIR})
  10. # Add the version of GMM in the repository to the include pathes
  11. set(GMMXX_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/resources/3rdparty/gmm-4.2/include")
  12. include_directories(${GMMXX_INCLUDE_DIR})
  13. #############################################################
  14. ##
  15. ## CMake options of StoRM
  16. ##
  17. #############################################################
  18. option(STORM_DEBUG "Sets whether the DEBUG mode is used" ON)
  19. option(STORM_USE_POPCNT "Sets whether the popcnt instruction is going to be used." ON)
  20. option(USE_BOOST_STATIC_LIBRARIES "Sets whether the Boost libraries should be linked statically." ON)
  21. option(STORM_USE_INTELTBB "Sets whether the Intel TBB libraries should be used." OFF)
  22. option(STORM_USE_COTIRE "Sets whether Cotire should be used (for building precompiled headers)." OFF)
  23. option(LINK_LIBCXXABI "Sets whether libc++abi should be linked." OFF)
  24. option(USE_LIBCXX "Sets whether the standard library is libc++." OFF)
  25. set(GUROBI_ROOT "" CACHE STRING "The root directory of Gurobi (if available).")
  26. set(Z3_ROOT "" CACHE STRING "The root directory of Z3 (if available).")
  27. set(MSAT_ROOT "" CACHE STRING "The root directory of MathSAT (if available).")
  28. set(ADDITIONAL_INCLUDE_DIRS "" CACHE STRING "Additional directories added to the include directories.")
  29. set(ADDITIONAL_LINK_DIRS "" CACHE STRING "Additional directories added to the link directories.")
  30. set(CUSTOM_BOOST_ROOT "" CACHE STRING "A custom path to the Boost root directory.")
  31. #############################################################
  32. ##
  33. ## Inclusion of required libraries
  34. ##
  35. #############################################################
  36. # Add the resources/cmake folder to Module Search Path for FindTBB.cmake
  37. set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/resources/cmake/")
  38. # Boost Option variables
  39. set(Boost_USE_STATIC_LIBS ON)
  40. set(Boost_USE_MULTITHREADED ON)
  41. set(Boost_USE_STATIC_RUNTIME OFF)
  42. # If a custom boost root directory was specified, we set the corresponding hint for the script to find it.
  43. if(CUSTOM_BOOST_ROOT)
  44. message(STATUS "StoRM - Using Boost from CUSTOM_BOOST_ROOT located at ${CUSTOM_BOOST_ROOT}")
  45. set(BOOST_ROOT "${CUSTOM_BOOST_ROOT}")
  46. endif(CUSTOM_BOOST_ROOT)
  47. set(TBB_INSTALL_DIR "${PROJECT_SOURCE_DIR}/resources/3rdparty/tbb42_20140122_merged-win-lin-mac")
  48. find_package(Boost REQUIRED)
  49. find_package(Doxygen REQUIRED)
  50. find_package(Gurobi)
  51. find_package(TBB)
  52. find_package(Threads REQUIRED)
  53. find_package(GMP)
  54. # If the DEBUG option was turned on, we will target a debug version and a release version otherwise.
  55. if (STORM_DEBUG)
  56. set (CMAKE_BUILD_TYPE "DEBUG")
  57. else()
  58. set (CMAKE_BUILD_TYPE "RELEASE")
  59. endif()
  60. message(STATUS "StoRM - Building ${CMAKE_BUILD_TYPE} version.")
  61. if ("${GUROBI_ROOT}" STREQUAL "" AND NOT GUROBI_FOUND)
  62. set(ENABLE_GUROBI OFF)
  63. else()
  64. set(ENABLE_GUROBI ON)
  65. endif()
  66. if ("${Z3_ROOT}" STREQUAL "")
  67. set(ENABLE_Z3 OFF)
  68. else()
  69. set(ENABLE_Z3 ON)
  70. set(Z3_LIB_NAME "z3")
  71. endif()
  72. if ("${MSAT_ROOT}" STREQUAL "")
  73. set(ENABLE_MSAT OFF)
  74. else()
  75. set(ENABLE_MSAT ON)
  76. endif()
  77. find_package(carl QUIET)
  78. if(carl_FOUND)
  79. message(STATUS "StoRM - Activating CArL.")
  80. set(STORM_HAVE_CARL ON)
  81. endif()
  82. message(STATUS "StoRM - CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
  83. message(STATUS "StoRM - CMAKE_BUILD_TYPE (ENV): $ENV{CMAKE_BUILD_TYPE}")
  84. #############################################################
  85. ##
  86. ## Compiler specific settings and definitions
  87. ##
  88. #############################################################
  89. # Path to the no-strict-aliasing target
  90. set(CONVERSIONHELPER_TARGET "${PROJECT_SOURCE_DIR}/src/utility/ConversionHelper.cpp")
  91. if(CMAKE_COMPILER_IS_GNUCC)
  92. set(STORM_COMPILED_BY "GCC")
  93. # Set standard flags for GCC
  94. set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops")
  95. add_definitions(-DBOOST_RESULT_OF_USE_DECLTYPE)
  96. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -pedantic")
  97. # Turn on popcnt instruction if desired (yes by default)
  98. if (STORM_USE_POPCNT)
  99. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt")
  100. endif(STORM_USE_POPCNT)
  101. # Set the no-strict-aliasing target for GCC
  102. set_source_files_properties(${CONVERSIONHELPER_TARGET} PROPERTIES COMPILE_FLAGS " -fno-strict-aliasing ")
  103. elseif(MSVC)
  104. set(STORM_COMPILED_BY "MSVC")
  105. # required for GMM to compile, ugly error directive in their code
  106. add_definitions(/D_SCL_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS)
  107. # required as the PRCTL Parser bloats object files (COFF) beyond their maximum size (see http://msdn.microsoft.com/en-us/library/8578y171(v=vs.110).aspx)
  108. add_definitions(/bigobj)
  109. # required by GTest and PrismGrammar::createIntegerVariable
  110. add_definitions(/D_VARIADIC_MAX=10)
  111. # Windows.h breaks GMM in gmm_except.h because of its macro definition for min and max
  112. add_definitions(/DNOMINMAX)
  113. # Boost Defs, required for using boost's transform iterator
  114. add_definitions(/DBOOST_RESULT_OF_USE_DECLTYPE)
  115. # since nobody cares at the moment
  116. add_definitions(/wd4250)
  117. if(ENABLE_Z3)
  118. set(Z3_LIB_NAME "libz3")
  119. endif()
  120. # MSVC does not do strict-aliasing, so no option needed
  121. else(CLANG)
  122. set(STORM_COMPILED_BY "Clang (LLVM)")
  123. # As CLANG is not set as a variable, we need to set it in case we have not matched another compiler.
  124. set (CLANG ON)
  125. # Set standard flags for clang
  126. set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops -O3")
  127. if(UNIX AND NOT APPLE AND NOT USE_LIBCXX)
  128. set(CLANG_STDLIB libstdc++)
  129. message(STATUS "StoRM - Linking against libstdc++")
  130. else()
  131. set(CLANG_STDLIB libc++)
  132. message(STATUS "StoRM - Linking against libc++")
  133. # Disable Cotire
  134. set(STORM_USE_COTIRE OFF)
  135. # Set up some Xcode specific settings
  136. set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++11")
  137. set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
  138. endif()
  139. add_definitions(-DBOOST_RESULT_OF_USE_DECLTYPE)
  140. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -stdlib=${CLANG_STDLIB} -Wall -pedantic -Wno-unused-variable -ftemplate-depth=1024")
  141. # Turn on popcnt instruction if desired (yes by default)
  142. if (STORM_USE_POPCNT)
  143. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt")
  144. endif(STORM_USE_POPCNT)
  145. # Set the no-strict-aliasing target for Clang
  146. set_source_files_properties(${CONVERSIONHELPER_TARGET} PROPERTIES COMPILE_FLAGS " -fno-strict-aliasing ")
  147. endif()
  148. message(STATUS "StoRM - Using Compiler Configuration: ${STORM_COMPILED_BY}")
  149. #############################################################
  150. ##
  151. ## CMake-generated Config File for StoRM
  152. ##
  153. #############################################################
  154. #
  155. # Make a version file containing the current version from git.
  156. #
  157. include(GetGitRevisionDescription)
  158. git_describe_checkout(STORM_GIT_VERSION_STRING)
  159. message(STATUS "STORM_GIT_VERSION_STRING: ${STORM_GIT_VERSION_STRING}")
  160. # Parse the git Tag into variables
  161. string(REGEX REPLACE "^([0-9]+)\\..*" "\\1" STORM_CPP_VERSION_MAJOR "${STORM_GIT_VERSION_STRING}")
  162. string(REGEX REPLACE "^[0-9]+\\.([0-9]+).*" "\\1" STORM_CPP_VERSION_MINOR "${STORM_GIT_VERSION_STRING}")
  163. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" STORM_CPP_VERSION_PATCH "${STORM_GIT_VERSION_STRING}")
  164. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-([0-9]+)\\-.*" "\\1" STORM_CPP_VERSION_COMMITS_AHEAD "${STORM_GIT_VERSION_STRING}")
  165. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-([a-z0-9]+).*" "\\1" STORM_CPP_VERSION_HASH "${STORM_GIT_VERSION_STRING}")
  166. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-[a-z0-9]+\\-(.*)" "\\1" STORM_CPP_VERSION_APPENDIX "${STORM_GIT_VERSION_STRING}")
  167. if ("${STORM_CPP_VERSION_APPENDIX}" MATCHES "^.*dirty.*$")
  168. set(STORM_CPP_VERSION_DIRTY 1)
  169. else()
  170. set(STORM_CPP_VERSION_DIRTY 0)
  171. endif()
  172. message(STATUS "StoRM - Version information: ${STORM_CPP_VERSION_MAJOR}.${STORM_CPP_VERSION_MINOR}.${STORM_CPP_VERSION_PATCH} (${STORM_CPP_VERSION_COMMITS_AHEAD} commits ahead of Tag) build from ${STORM_CPP_VERSION_HASH} (Dirty: ${STORM_CPP_VERSION_DIRTY})")
  173. # Base path for test files
  174. set(STORM_CPP_TESTS_BASE_PATH "${PROJECT_SOURCE_DIR}/test")
  175. # Gurobi Defines
  176. if (ENABLE_GUROBI)
  177. set(STORM_CPP_GUROBI_DEF "define")
  178. else()
  179. set(STORM_CPP_GUROBI_DEF "undef")
  180. endif()
  181. # glpk defines
  182. set(STORM_CPP_GLPK_DEF "define")
  183. # Z3 Defines
  184. if (ENABLE_Z3)
  185. set(STORM_CPP_Z3_DEF "define")
  186. else()
  187. set(STORM_CPP_Z3_DEF "undef")
  188. endif()
  189. # MathSAT Defines
  190. if (ENABLE_MSAT)
  191. set(STORM_CPP_MSAT_DEF "define")
  192. else()
  193. set(STORM_CPP_MSAT_DEF "undef")
  194. endif()
  195. # Intel TBB Defines
  196. if (TBB_FOUND AND STORM_USE_INTELTBB)
  197. set(STORM_CPP_INTELTBB_DEF "define")
  198. else()
  199. set(STORM_CPP_INTELTBB_DEF "undef")
  200. endif()
  201. # Configure a header file to pass some of the CMake settings to the source code
  202. configure_file (
  203. "${PROJECT_SOURCE_DIR}/storm-config.h.in"
  204. "${PROJECT_BINARY_DIR}/include/storm-config.h"
  205. )
  206. # Configure a header file to pass the storm version to the source code
  207. configure_file (
  208. "${PROJECT_SOURCE_DIR}/storm-version.cpp.in"
  209. "${PROJECT_SOURCE_DIR}/src/utility/storm-version.cpp"
  210. )
  211. # Add the binary dir include directory for storm-config.h
  212. include_directories("${PROJECT_BINARY_DIR}/include")
  213. #############################################################
  214. ##
  215. ## Source file aggregation and clustering
  216. ##
  217. #############################################################
  218. file(GLOB_RECURSE STORM_HEADERS ${PROJECT_SOURCE_DIR}/src/*.h)
  219. file(GLOB_RECURSE STORM_SOURCES_WITHOUT_MAIN ${PROJECT_SOURCE_DIR}/src/*/*.cpp)
  220. file(GLOB_RECURSE STORM_MAIN_FILE ${PROJECT_SOURCE_DIR}/src/storm.cpp)
  221. set(STORM_SOURCES "${STORM_SOURCES_WITHOUT_MAIN};${STORM_MAIN_FILE};")
  222. file(GLOB_RECURSE STORM_ADAPTERS_FILES ${PROJECT_SOURCE_DIR}/src/adapters/*.h ${PROJECT_SOURCE_DIR}/src/adapters/*.cpp)
  223. file(GLOB_RECURSE STORM_BUILDER_FILES ${PROJECT_SOURCE_DIR}/src/builder/*.h ${PROJECT_SOURCE_DIR}/src/builder/*.cpp)
  224. file(GLOB_RECURSE STORM_EXCEPTIONS_FILES ${PROJECT_SOURCE_DIR}/src/exceptions/*.h ${PROJECT_SOURCE_DIR}/src/exceptions/*.cpp)
  225. file(GLOB_RECURSE STORM_LOGIC_FILES ${PROJECT_SOURCE_DIR}/src/logic/*.h ${PROJECT_SOURCE_DIR}/src/logic/*.cpp)
  226. file(GLOB STORM_MODELCHECKER_FILES ${PROJECT_SOURCE_DIR}/src/modelchecker/*.h ${PROJECT_SOURCE_DIR}/src/modelchecker/*.cpp)
  227. file(GLOB_RECURSE STORM_MODELCHECKER_PRCTL_FILES ${PROJECT_SOURCE_DIR}/src/modelchecker/prctl/*.h ${PROJECT_SOURCE_DIR}/src/modelchecker/prctl/*.cpp)
  228. file(GLOB_RECURSE STORM_MODELCHECKER_CSL_FILES ${PROJECT_SOURCE_DIR}/src/modelchecker/csl/*.h ${PROJECT_SOURCE_DIR}/src/modelchecker/csl/*.cpp)
  229. file(GLOB_RECURSE STORM_MODELCHECKER_REACHABILITY_FILES ${PROJECT_SOURCE_DIR}/src/modelchecker/reachability/*.h ${PROJECT_SOURCE_DIR}/src/modelchecker/reachability/*.cpp)
  230. file(GLOB_RECURSE STORM_MODELCHECKER_PROPOSITIONAL_FILES ${PROJECT_SOURCE_DIR}/src/modelchecker/propositional/*.h ${PROJECT_SOURCE_DIR}/src/modelchecker/propositional/*.cpp)
  231. file(GLOB_RECURSE STORM_MODELCHECKER_RESULTS_FILES ${PROJECT_SOURCE_DIR}/src/modelchecker/results/*.h ${PROJECT_SOURCE_DIR}/src/modelchecker/results/*.cpp)
  232. file(GLOB_RECURSE STORM_COUNTEREXAMPLES_FILES ${PROJECT_SOURCE_DIR}/src/counterexamples/*.h ${PROJECT_SOURCE_DIR}/src/counterexamples/*.cpp)
  233. file(GLOB STORM_MODELS_FILES ${PROJECT_SOURCE_DIR}/src/models/*.h ${PROJECT_SOURCE_DIR}/src/models/*.cpp)
  234. file(GLOB_RECURSE STORM_MODELS_SPARSE_FILES ${PROJECT_SOURCE_DIR}/src/models/sparse/*.h ${PROJECT_SOURCE_DIR}/src/models/sparse/*.cpp)
  235. file(GLOB_RECURSE STORM_MODELS_SYMBOLIC_FILES ${PROJECT_SOURCE_DIR}/src/models/symbolic/*.h ${PROJECT_SOURCE_DIR}/src/models/symbolic/*.cpp)
  236. file(GLOB STORM_PARSER_FILES ${PROJECT_SOURCE_DIR}/src/parser/*.h ${PROJECT_SOURCE_DIR}/src/parser/*.cpp)
  237. file(GLOB_RECURSE STORM_PARSER_PRISMPARSER_FILES ${PROJECT_SOURCE_DIR}/src/parser/prismparser/*.h ${PROJECT_SOURCE_DIR}/src/parser/prismparser/*.cpp)
  238. file(GLOB STORM_SETTINGS_FILES ${PROJECT_SOURCE_DIR}/src/settings/*.h ${PROJECT_SOURCE_DIR}/src/settings/*.cpp)
  239. file(GLOB STORM_SETTINGS_MODULES_FILES ${PROJECT_SOURCE_DIR}/src/settings/modules/*.h ${PROJECT_SOURCE_DIR}/src/settings/modules/*.cpp)
  240. file(GLOB_RECURSE STORM_SOLVER_FILES ${PROJECT_SOURCE_DIR}/src/solver/*.h ${PROJECT_SOURCE_DIR}/src/solver/*.cpp)
  241. file(GLOB STORM_STORAGE_FILES ${PROJECT_SOURCE_DIR}/src/storage/*.h ${PROJECT_SOURCE_DIR}/src/storage/*.cpp)
  242. file(GLOB_RECURSE STORM_STORAGE_DD_FILES ${PROJECT_SOURCE_DIR}/src/storage/dd/*.h ${PROJECT_SOURCE_DIR}/src/storage/dd/*.cpp)
  243. file(GLOB_RECURSE STORM_STORAGE_EXPRESSIONS_FILES ${PROJECT_SOURCE_DIR}/src/storage/expressions/*.h ${PROJECT_SOURCE_DIR}/src/storage/expressions/*.cpp)
  244. file(GLOB_RECURSE STORM_STORAGE_PRISM_FILES ${PROJECT_SOURCE_DIR}/src/storage/prism/*.h ${PROJECT_SOURCE_DIR}/src/storage/prism/*.cpp)
  245. file(GLOB_RECURSE STORM_STORAGE_SPARSE_FILES ${PROJECT_SOURCE_DIR}/src/storage/sparse/*.h ${PROJECT_SOURCE_DIR}/src/storage/sparse/*.cpp)
  246. file(GLOB_RECURSE STORM_UTILITY_FILES ${PROJECT_SOURCE_DIR}/src/utility/*.h ${PROJECT_SOURCE_DIR}/src/utility/*.cpp)
  247. # Test Sources
  248. # Note that the tests also need the source files, except for the main file
  249. file(GLOB STORM_FUNCTIONAL_TEST_MAIN_FILE ${STORM_CPP_TESTS_BASE_PATH}/functional/storm-functional-tests.cpp)
  250. file(GLOB_RECURSE STORM_FUNCTIONAL_TEST_FILES ${STORM_CPP_TESTS_BASE_PATH}/functional/*.h ${STORM_CPP_TESTS_BASE_PATH}/functional/*.cpp)
  251. file(GLOB STORM_PERFORMANCE_TEST_MAIN_FILE ${STORM_CPP_TESTS_BASE_PATH}/performance/storm-performance-tests.cpp)
  252. file(GLOB_RECURSE STORM_PERFORMANCE_TEST_FILES ${STORM_CPP_TESTS_BASE_PATH}/performance/*/*.h ${STORM_CPP_TESTS_BASE_PATH}/performance/*/*.cpp)
  253. # Additional include files like the storm-config.h
  254. file(GLOB_RECURSE STORM_BUILD_HEADERS ${PROJECT_BINARY_DIR}/include/*.h)
  255. # Group the headers and sources
  256. source_group(main FILES ${STORM_MAIN_FILE})
  257. source_group(adapters FILES ${STORM_ADAPTERS_FILES})
  258. source_group(builder FILES ${STORM_BUILDER_FILES})
  259. source_group(exceptions FILES ${STORM_EXCEPTIONS_FILES})
  260. source_group(logic FILES ${STORM_LOGIC_FILES})
  261. source_group(generated FILES ${STORM_BUILD_HEADERS} ${STORM_BUILD_SOURCES})
  262. source_group(modelchecker FILES ${STORM_MODELCHECKER_FILES})
  263. source_group(modelchecker\\prctl FILES ${STORM_MODELCHECKER_PRCTL_FILES})
  264. source_group(modelchecker\\csl FILES ${STORM_MODELCHECKER_CSL_FILES})
  265. source_group(modelchecker\\reachability FILES ${STORM_MODELCHECKER_REACHABILITY_FILES})
  266. source_group(modelchecker\\propositional FILES ${STORM_MODELCHECKER_PROPOSITIONAL_FILES})
  267. source_group(modelchecker\\results FILES ${STORM_MODELCHECKER_RESULTS_FILES})
  268. source_group(counterexamples FILES ${STORM_COUNTEREXAMPLES_FILES})
  269. source_group(models FILES ${STORM_MODELS_FILES})
  270. source_group(models\\sparse FILES ${STORM_MODELS_SPARSE_FILES})
  271. source_group(models\\symbolic FILES ${STORM_MODELS_SYMBOLIC_FILES})
  272. source_group(parser FILES ${STORM_PARSER_FILES})
  273. source_group(parser\\prismparser FILES ${STORM_PARSER_PRISMPARSER_FILES})
  274. source_group(settings FILES ${STORM_SETTINGS_FILES})
  275. source_group(settings\\modules FILES ${STORM_SETTINGS_MODULES_FILES})
  276. source_group(solver FILES ${STORM_SOLVER_FILES})
  277. source_group(storage FILES ${STORM_STORAGE_FILES})
  278. source_group(storage\\dd FILES ${STORM_STORAGE_DD_FILES})
  279. source_group(storage\\expressions FILES ${STORM_STORAGE_EXPRESSIONS_FILES})
  280. source_group(storage\\prism FILES ${STORM_STORAGE_PRISM_FILES})
  281. source_group(storage\\sparse FILES ${STORM_STORAGE_SPARSE_FILES})
  282. source_group(utility FILES ${STORM_UTILITY_FILES})
  283. source_group(functional-test FILES ${STORM_FUNCTIONAL_TEST_FILES})
  284. source_group(performance-test FILES ${STORM_PERFORMANCE_TEST_FILES})
  285. # Add custom additional include or link directories
  286. if (ADDITIONAL_INCLUDE_DIRS)
  287. message(STATUS "StoRM - Using additional include directories ${ADDITIONAL_INCLUDE_DIRS}")
  288. include_directories(${ADDITIONAL_INCLUDE_DIRS})
  289. endif(ADDITIONAL_INCLUDE_DIRS)
  290. if (ADDITIONAL_LINK_DIRS)
  291. message(STATUS "StoRM - Using additional link directories ${ADDITIONAL_LINK_DIRS}")
  292. link_directories(${ADDITIONAL_LINK_DIRS})
  293. endif(ADDITIONAL_LINK_DIRS)
  294. #############################################################
  295. ##
  296. ## Pre executable-creation link_directories setup
  297. ##
  298. #############################################################
  299. if (ENABLE_GUROBI)
  300. if (NOT GUROBI_FOUND)
  301. message(FATAL_ERROR "Gurobi was requested, but not found!")
  302. endif()
  303. #link_directories("${GUROBI_ROOT}/lib")
  304. endif()
  305. if (ENABLE_Z3)
  306. link_directories("${Z3_ROOT}/bin")
  307. endif()
  308. if (ENABLE_MSAT)
  309. link_directories("${MSAT_ROOT}/lib")
  310. endif()
  311. if(GMP_FOUND)
  312. link_directories(${GMP_LIBRARY_DIR})
  313. elseif(MPIR_FOUND)
  314. link_directories(${GMP_MPIR_LIBRARY_DIR} ${GMP_MPIRXX_LIBRARY_DIR})
  315. else(GMP_FOUND)
  316. if (ENABLE_MSAT)
  317. message(FATAL_ERROR "GMP is required for MathSAT, but was not found!")
  318. endif(ENABLE_MSAT)
  319. endif(GMP_FOUND)
  320. if ((NOT Boost_LIBRARY_DIRS) OR ("${Boost_LIBRARY_DIRS}" STREQUAL ""))
  321. set(Boost_LIBRARY_DIRS "${Boost_INCLUDE_DIRS}/stage/lib")
  322. endif ()
  323. link_directories(${Boost_LIBRARY_DIRS})
  324. if (TBB_FOUND AND STORM_USE_INTELTBB)
  325. link_directories(${TBB_LIBRARY_DIRS})
  326. endif()
  327. ###############################################################################
  328. ## #
  329. ## Executable Creation #
  330. ## #
  331. ## All link_directories() calls MUST be made before this point #
  332. ## #
  333. ###############################################################################
  334. add_library(storm ${STORM_SOURCES_WITHOUT_MAIN} ${STORM_HEADERS})
  335. add_executable(storm-main ${STORM_MAIN_FILE})
  336. target_link_libraries(storm-main storm)
  337. set_target_properties(storm-main PROPERTIES OUTPUT_NAME "storm")
  338. add_executable(storm-functional-tests ${STORM_FUNCTIONAL_TEST_MAIN_FILE} ${STORM_FUNCTIONAL_TEST_FILES})
  339. target_link_libraries(storm-functional-tests storm)
  340. add_executable(storm-performance-tests ${STORM_PERFORMANCE_TEST_MAIN_FILE} ${STORM_PERFORMANCE_TEST_FILES})
  341. target_link_libraries(storm-performance-tests storm)
  342. #############################################################
  343. ##
  344. ## Boost
  345. ##
  346. #############################################################
  347. include_directories(${Boost_INCLUDE_DIRS})
  348. target_link_libraries(storm ${Boost_LIBRARIES})
  349. #message(STATUS "BOOST_INCLUDE_DIRS is ${Boost_INCLUDE_DIRS}")
  350. #message(STATUS "BOOST_LIBRARY_DIRS is ${Boost_LIBRARY_DIRS}")
  351. #############################################################
  352. ##
  353. ## CUDD
  354. ##
  355. #############################################################
  356. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0")
  357. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/cudd")
  358. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/epd")
  359. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/mtr")
  360. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/nanotrav")
  361. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/obj")
  362. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/st")
  363. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/util")
  364. target_link_libraries(storm cudd)
  365. #############################################################
  366. ##
  367. ## LTL2DSTAR
  368. ##
  369. #############################################################
  370. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/ltl2dstar-0.5.1")
  371. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/ltl2dstar-0.5.1/src")
  372. target_link_libraries(storm ltl2dstar)
  373. #############################################################
  374. ##
  375. ## Gurobi (optional)
  376. ##
  377. #############################################################
  378. if (ENABLE_GUROBI)
  379. message (STATUS "StoRM - Linking with Gurobi (include: ${GUROBI_INCLUDE_DIRS})")
  380. include_directories(${GUROBI_INCLUDE_DIRS})
  381. target_link_libraries(storm ${GUROBI_LIBRARY})
  382. target_link_libraries(storm-functional-tests ${GUROBI_LIBRARY})
  383. target_link_libraries(storm-performance-tests ${GUROBI_LIBRARY})
  384. endif(ENABLE_GUROBI)
  385. #############################################################
  386. ##
  387. ## glpk
  388. ##
  389. #############################################################
  390. message (STATUS "StoRM - Linking with glpk")
  391. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/glpk-4.53")
  392. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/glpk-4.53/src")
  393. target_link_libraries(storm "glpk")
  394. #############################################################
  395. ##
  396. ## ExprTk
  397. ##
  398. #############################################################
  399. message (STATUS "StoRM - Including ExprTk")
  400. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/exprtk")
  401. #############################################################
  402. ##
  403. ## Z3 (optional)
  404. ##
  405. #############################################################
  406. if (ENABLE_Z3)
  407. message (STATUS "StoRM - Linking with Z3")
  408. include_directories("${Z3_ROOT}/include")
  409. target_link_libraries(storm ${Z3_LIB_NAME})
  410. endif(ENABLE_Z3)
  411. #############################################################
  412. ##
  413. ## carl
  414. ##
  415. #############################################################
  416. if(STORM_HAVE_CARL)
  417. message(STATUS "StoRM - Linking with carl.")
  418. include_directories("${carl_INCLUDE_DIR}")
  419. target_link_libraries(storm lib_carl)
  420. target_link_libraries(storm-functional-tests lib_carl)
  421. target_link_libraries(storm-performance-tests lib_carl)
  422. endif()
  423. #############################################################
  424. ##
  425. ## MathSAT (optional)
  426. ##
  427. #############################################################
  428. if (ENABLE_MSAT)
  429. message (STATUS "StoRM - Linking with MathSAT")
  430. include_directories("${MSAT_ROOT}/include")
  431. target_link_libraries(storm "mathsat")
  432. target_link_libraries(storm-functional-tests "mathsat")
  433. target_link_libraries(storm-performance-tests "mathsat")
  434. if(GMP_FOUND)
  435. include_directories("${GMP_INCLUDE_DIR}")
  436. target_link_libraries(storm "gmp")
  437. target_link_libraries(storm-functional-tests "gmp")
  438. target_link_libraries(storm-performance-tests "gmp")
  439. elseif(MPIR_FOUND)
  440. include_directories("${GMP_INCLUDE_DIR}")
  441. target_link_libraries(storm "mpir" "mpirxx")
  442. target_link_libraries(storm-functional-tests "mpir" "mpirxx")
  443. target_link_libraries(storm-performance-tests "mpir" "mpirxx")
  444. else(GMP_FOUND)
  445. message(FATAL_ERROR "GMP is required for MathSAT, but was not found!")
  446. endif(GMP_FOUND)
  447. endif(ENABLE_MSAT)
  448. #############################################################
  449. ##
  450. ## Google Test gtest
  451. ##
  452. #############################################################
  453. set(gtest_force_shared_crt ON)
  454. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/gtest-1.7.0")
  455. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/gtest-1.7.0/include")
  456. enable_testing()
  457. target_link_libraries(storm-functional-tests gtest)
  458. target_link_libraries(storm-performance-tests gtest)
  459. add_test(NAME storm-functional-tests COMMAND storm-functional-tests)
  460. add_test(NAME storm-performance-tests COMMAND storm-performance-tests)
  461. #############################################################
  462. ##
  463. ## Log4CPlus
  464. ##
  465. #############################################################
  466. set(BUILD_SHARED_LIBS OFF CACHE BOOL "If TRUE, log4cplus is built as a shared library, otherwise as a static library")
  467. set(LOG4CPLUS_BUILD_LOGGINGSERVER OFF)
  468. set(LOG4CPLUS_BUILD_TESTING OFF)
  469. set(LOG4CPLUS_USE_UNICODE OFF)
  470. set(LOG4CPLUS_DEFINE_INSTALL_TARGET OFF)
  471. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/log4cplus-1.1.3-rc1")
  472. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/log4cplus-1.1.3-rc1/include")
  473. include_directories("${PROJECT_BINARY_DIR}/resources/3rdparty/log4cplus-1.1.3-rc1/include") # This adds the defines.hxx file
  474. target_link_libraries(storm log4cplusS)
  475. target_link_libraries(storm-functional-tests log4cplusS)
  476. target_link_libraries(storm-performance-tests log4cplusS)
  477. if (UNIX AND NOT APPLE)
  478. target_link_libraries(storm rt)
  479. if (STORM_USE_COTIRE)
  480. target_link_libraries(storm_unity rt)
  481. endif(STORM_USE_COTIRE)
  482. endif(UNIX AND NOT APPLE)
  483. #############################################################
  484. ##
  485. ## Intel Threading Building Blocks (optional)
  486. ##
  487. #############################################################
  488. if (TBB_FOUND)
  489. message(STATUS "StoRM - Found Intel TBB with interface version ${TBB_INTERFACE_VERSION}.")
  490. if (STORM_USE_INTELTBB)
  491. message(STATUS "StoRM - Linking with Intel TBB in ${TBB_LIBRARY_DIRS}.")
  492. include_directories(${TBB_INCLUDE_DIRS})
  493. target_link_libraries(storm tbb tbbmalloc)
  494. endif(STORM_USE_INTELTBB)
  495. endif(TBB_FOUND)
  496. #############################################################
  497. ##
  498. ## Threads
  499. ##
  500. #############################################################
  501. include_directories(${THREADS_INCLUDE_DIRS})
  502. target_link_libraries(storm ${CMAKE_THREAD_LIBS_INIT})
  503. if (STORM_USE_COTIRE)
  504. target_link_libraries(storm_unity ${CMAKE_THREAD_LIBS_INIT})
  505. endif(STORM_USE_COTIRE)
  506. if (MSVC)
  507. # Add the DebugHelper DLL
  508. set(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} Dbghelp.lib")
  509. target_link_libraries(storm "Dbghelp.lib")
  510. endif(MSVC)
  511. # Print Cotire Usage Status
  512. message (STATUS "StoRM - Using Cotire: ${STORM_USE_COTIRE}")
  513. if (STORM_USE_COTIRE)
  514. # Include Cotire for PCH Generation
  515. set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/resources/cmake")
  516. include(cotire)
  517. cotire(storm)
  518. target_link_libraries(storm_unity ${Boost_LIBRARIES})
  519. #cotire(storm-functional-tests)
  520. #cotire(storm-performance-tests)
  521. endif()
  522. # Link against libc++abi if requested. May be needed to build on Linux systems using clang.
  523. if (LINK_LIBCXXABI)
  524. message (STATUS "StoRM - Linking against libc++abi.")
  525. target_link_libraries(storm "c++abi")
  526. endif(LINK_LIBCXXABI)
  527. # Add a target to generate API documentation with Doxygen
  528. if(DOXYGEN_FOUND)
  529. set(CMAKE_DOXYGEN_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/doc")
  530. string(REGEX REPLACE ";" " " CMAKE_DOXYGEN_INPUT_LIST "${PROJECT_SOURCE_DIR}/src")
  531. configure_file("${CMAKE_CURRENT_SOURCE_DIR}/doc/Doxyfile.in" "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" @ONLY)
  532. add_custom_target(doc ${DOXYGEN_EXECUTABLE} "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" COMMENT "Generating API documentation with Doxygen" VERBATIM)
  533. endif(DOXYGEN_FOUND)
  534. add_custom_target(memcheck valgrind --leak-check=full --show-reachable=yes ${PROJECT_BINARY_DIR}/storm -v --fix-deadlocks ${PROJECT_SOURCE_DIR}/examples/dtmc/crowds/crowds5_5.tra examples/dtmc/crowds/crowds5_5.lab DEPENDS storm)
  535. add_custom_target(memcheck-functional-tests valgrind --leak-check=full --show-reachable=yes ${PROJECT_BINARY_DIR}/storm-functional-tests -v --fix-deadlocks DEPENDS storm-functional-tests)
  536. add_custom_target(memcheck-performance-tests valgrind --leak-check=full --show-reachable=yes ${PROJECT_BINARY_DIR}/storm-performance-tests -v --fix-deadlocks DEPENDS storm-performance-tests)
  537. set(CPPLINT_ARGS --filter=-whitespace/tab,-whitespace/line_length,-legal/copyright,-readability/streams)
  538. add_custom_target(style python cpplint.py ${CPPLINT_ARGS} `find ./src/ -iname "*.h" -or -iname "*.cpp" `)
  539. INSTALL(TARGETS storm-main storm-functional-tests storm-performance-tests
  540. RUNTIME DESTINATION bin
  541. LIBRARY DESTINATION lib
  542. ARCHIVE DESTINATION lib
  543. )
  544. include(StormCPackConfig.cmake)