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.

582 lines
26 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(MathSAT_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(TBB)
  51. find_package(Threads REQUIRED)
  52. find_package(GMP)
  53. # If the DEBUG option was turned on, we will target a debug version and a release version otherwise
  54. if (STORM_DEBUG)
  55. set (CMAKE_BUILD_TYPE "DEBUG")
  56. else()
  57. set (CMAKE_BUILD_TYPE "RELEASE")
  58. endif()
  59. message(STATUS "StoRM - Building ${CMAKE_BUILD_TYPE} version.")
  60. if ("${GUROBI_ROOT}" STREQUAL "")
  61. set(ENABLE_GUROBI OFF)
  62. else()
  63. set(ENABLE_GUROBI ON)
  64. endif()
  65. if ("${Z3_ROOT}" STREQUAL "")
  66. set(ENABLE_Z3 OFF)
  67. else()
  68. set(ENABLE_Z3 ON)
  69. set(Z3_LIB_NAME "z3")
  70. endif()
  71. if ("${MathSAT_ROOT}" STREQUAL "")
  72. set(ENABLE_MathSAT OFF)
  73. else()
  74. set(ENABLE_MathSAT ON)
  75. endif()
  76. message(STATUS "StoRM - CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
  77. message(STATUS "StoRM - CMAKE_BUILD_TYPE (ENV): $ENV{CMAKE_BUILD_TYPE}")
  78. #############################################################
  79. ##
  80. ## Compiler specific settings and definitions
  81. ##
  82. #############################################################
  83. # Path to the no-strict-aliasing target
  84. set(CONVERSIONHELPER_TARGET "${PROJECT_SOURCE_DIR}/src/utility/ConversionHelper.cpp")
  85. if(CMAKE_COMPILER_IS_GNUCC)
  86. message(STATUS "StoRM - Using Compiler Configuration: GCC")
  87. # Set standard flags for GCC
  88. set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops")
  89. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -pedantic -DBOOST_RESULT_OF_USE_TR1")
  90. # -Werror is atm removed as this gave some problems with existing code
  91. # May be re-set later
  92. # (Thomas Heinemann, 2012-12-21)
  93. # Turn on popcnt instruction if desired (yes by default)
  94. if (STORM_USE_POPCNT)
  95. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt")
  96. endif(STORM_USE_POPCNT)
  97. # Set the no-strict-aliasing target for GCC
  98. set_source_files_properties(${CONVERSIONHELPER_TARGET} PROPERTIES COMPILE_FLAGS " -fno-strict-aliasing ")
  99. elseif(MSVC)
  100. message(STATUS "StoRM - Using Compiler Configuration: MSVC")
  101. # required for GMM to compile, ugly error directive in their code
  102. add_definitions(/D_SCL_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS)
  103. # 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)
  104. add_definitions(/bigobj)
  105. # required by GTest and PrismGrammar::createIntegerVariable
  106. add_definitions(/D_VARIADIC_MAX=10)
  107. # Windows.h breaks GMM in gmm_except.h because of its macro definition for min and max
  108. add_definitions(/DNOMINMAX)
  109. # since nobody cares at the moment
  110. add_definitions(/wd4250)
  111. if(ENABLE_Z3)
  112. set(Z3_LIB_NAME "libz3")
  113. endif()
  114. # MSVC does not do strict-aliasing, so no option needed
  115. else(CLANG)
  116. message(STATUS "StoRM - Using Compiler Configuration: Clang (LLVM)")
  117. # As CLANG is not set as a variable, we need to set it in case we have not matched another compiler.
  118. set (CLANG ON)
  119. # Set standard flags for clang
  120. set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops -O3")
  121. if(UNIX AND NOT APPLE AND NOT USE_LIBCXX)
  122. set(CLANG_STDLIB libstdc++)
  123. message(STATUS "StoRM - Linking against libstdc++")
  124. else()
  125. set(CLANG_STDLIB libc++)
  126. message(STATUS "StoRM - Linking against libc++")
  127. # Disable Cotire
  128. set(STORM_USE_COTIRE OFF)
  129. # Set up some Xcode specific settings
  130. set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++11")
  131. set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
  132. endif()
  133. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -stdlib=${CLANG_STDLIB} -Wall -pedantic -Wno-unused-variable -DBOOST_RESULT_OF_USE_TR1 -DBOOST_NO_DECLTYPE -ftemplate-depth=1024")
  134. set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g")
  135. # Turn on popcnt instruction if desired (yes by default)
  136. if (STORM_USE_POPCNT)
  137. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt")
  138. endif(STORM_USE_POPCNT)
  139. # Set the no-strict-aliasing target for Clang
  140. set_source_files_properties(${CONVERSIONHELPER_TARGET} PROPERTIES COMPILE_FLAGS " -fno-strict-aliasing ")
  141. endif()
  142. #############################################################
  143. ##
  144. ## CMake-generated Config File for StoRM
  145. ##
  146. #############################################################
  147. #
  148. # Make a version file containing the current version from git.
  149. #
  150. include(GetGitRevisionDescription)
  151. git_describe_checkout(STORM_GIT_VERSION_STRING)
  152. message(STATUS "STORM_GIT_VERSION_STRING: ${STORM_GIT_VERSION_STRING}")
  153. # Parse the git Tag into variables
  154. string(REGEX REPLACE "^([0-9]+)\\..*" "\\1" STORM_CPP_VERSION_MAJOR "${STORM_GIT_VERSION_STRING}")
  155. string(REGEX REPLACE "^[0-9]+\\.([0-9]+).*" "\\1" STORM_CPP_VERSION_MINOR "${STORM_GIT_VERSION_STRING}")
  156. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" STORM_CPP_VERSION_PATCH "${STORM_GIT_VERSION_STRING}")
  157. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-([0-9]+)\\-.*" "\\1" STORM_CPP_VERSION_COMMITS_AHEAD "${STORM_GIT_VERSION_STRING}")
  158. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-([a-z0-9]+).*" "\\1" STORM_CPP_VERSION_HASH "${STORM_GIT_VERSION_STRING}")
  159. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-[a-z0-9]+\\-(.*)" "\\1" STORM_CPP_VERSION_APPENDIX "${STORM_GIT_VERSION_STRING}")
  160. if ("${STORM_CPP_VERSION_APPENDIX}" MATCHES "^.*dirty.*$")
  161. set(STORM_CPP_VERSION_DIRTY 1)
  162. else()
  163. set(STORM_CPP_VERSION_DIRTY 0)
  164. endif()
  165. 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})")
  166. # Base path for test files
  167. set(STORM_CPP_TESTS_BASE_PATH "${PROJECT_SOURCE_DIR}/test")
  168. # Gurobi Defines
  169. if (ENABLE_GUROBI)
  170. set(STORM_CPP_GUROBI_DEF "define")
  171. else()
  172. set(STORM_CPP_GUROBI_DEF "undef")
  173. endif()
  174. # glpk defines
  175. set(STORM_CPP_GLPK_DEF "define")
  176. # Z3 Defines
  177. if (ENABLE_Z3)
  178. set(STORM_CPP_Z3_DEF "define")
  179. else()
  180. set(STORM_CPP_Z3_DEF "undef")
  181. endif()
  182. # MathSAT Defines
  183. if (ENABLE_MathSAT)
  184. set(STORM_CPP_MathSAT_DEF "define")
  185. else()
  186. set(STORM_CPP_MathSAT_DEF "undef")
  187. endif()
  188. # Intel TBB Defines
  189. if (TBB_FOUND AND STORM_USE_INTELTBB)
  190. set(STORM_CPP_INTELTBB_DEF "define")
  191. else()
  192. set(STORM_CPP_INTELTBB_DEF "undef")
  193. endif()
  194. # Configure a header file to pass some of the CMake settings to the source code
  195. configure_file (
  196. "${PROJECT_SOURCE_DIR}/storm-config.h.in"
  197. "${PROJECT_BINARY_DIR}/include/storm-config.h"
  198. )
  199. # Configure a header file to pass the storm version to the source code
  200. configure_file (
  201. "${PROJECT_SOURCE_DIR}/storm-version.h.in"
  202. "${PROJECT_BINARY_DIR}/include/storm-version.h"
  203. )
  204. # Add the binary dir include directory for storm-config.h
  205. include_directories("${PROJECT_BINARY_DIR}/include")
  206. #############################################################
  207. ##
  208. ## Source file aggregation and clustering
  209. ##
  210. #############################################################
  211. file(GLOB_RECURSE STORM_HEADERS ${PROJECT_SOURCE_DIR}/src/*.h)
  212. file(GLOB_RECURSE STORM_SOURCES_WITHOUT_MAIN ${PROJECT_SOURCE_DIR}/src/*/*.cpp)
  213. file(GLOB_RECURSE STORM_MAIN_FILE ${PROJECT_SOURCE_DIR}/src/storm.cpp)
  214. set(STORM_SOURCES "${STORM_SOURCES_WITHOUT_MAIN};${STORM_MAIN_FILE}")
  215. file(GLOB_RECURSE STORM_ADAPTERS_FILES ${PROJECT_SOURCE_DIR}/src/adapters/*.h ${PROJECT_SOURCE_DIR}/src/adapters/*.cpp)
  216. file(GLOB_RECURSE STORM_EXCEPTIONS_FILES ${PROJECT_SOURCE_DIR}/src/exceptions/*.h ${PROJECT_SOURCE_DIR}/src/exceptions/*.cpp)
  217. file(GLOB STORM_FORMULA_FILES ${PROJECT_SOURCE_DIR}/src/formula/*.h ${PROJECT_SOURCE_DIR}/src/formula/*.cpp)
  218. file(GLOB_RECURSE STORM_FORMULA_ABSTRACT_FILES ${PROJECT_SOURCE_DIR}/src/formula/abstract/*.h ${PROJECT_SOURCE_DIR}/src/formula/abstract/*.cpp)
  219. file(GLOB_RECURSE STORM_FORMULA_CSL_FILES ${PROJECT_SOURCE_DIR}/src/formula/Csl/*.h ${PROJECT_SOURCE_DIR}/src/formula/Csl/*.cpp)
  220. file(GLOB_RECURSE STORM_FORMULA_LTL_FILES ${PROJECT_SOURCE_DIR}/src/formula/Ltl/*.h ${PROJECT_SOURCE_DIR}/src/formula/Ltl/*.cpp)
  221. file(GLOB_RECURSE STORM_FORMULA_PRCTL_FILES ${PROJECT_SOURCE_DIR}/src/formula/Prctl/*.h ${PROJECT_SOURCE_DIR}/src/formula/Prctl/*.cpp)
  222. file(GLOB_RECURSE STORM_MODELCHECKER_FILES ${PROJECT_SOURCE_DIR}/src/modelchecker/*.h ${PROJECT_SOURCE_DIR}/src/modelchecker/*.cpp)
  223. file(GLOB_RECURSE STORM_COUNTEREXAMPLES_FILES ${PROJECT_SOURCE_DIR}/src/counterexamples/*.h ${PROJECT_SOURCE_DIR}/src/counterexamples/*.cpp)
  224. file(GLOB_RECURSE STORM_MODELS_FILES ${PROJECT_SOURCE_DIR}/src/models/*.h ${PROJECT_SOURCE_DIR}/src/models/*.cpp)
  225. file(GLOB STORM_PARSER_FILES ${PROJECT_SOURCE_DIR}/src/parser/*.h ${PROJECT_SOURCE_DIR}/src/parser/*.cpp)
  226. file(GLOB_RECURSE STORM_PARSER_PRISMPARSER_FILES ${PROJECT_SOURCE_DIR}/src/parser/prismparser/*.h ${PROJECT_SOURCE_DIR}/src/parser/prismparser/*.cpp)
  227. file(GLOB_RECURSE STORM_SETTINGS_FILES ${PROJECT_SOURCE_DIR}/src/settings/*.h ${PROJECT_SOURCE_DIR}/src/settings/*.cpp)
  228. file(GLOB_RECURSE STORM_SOLVER_FILES ${PROJECT_SOURCE_DIR}/src/solver/*.h ${PROJECT_SOURCE_DIR}/src/solver/*.cpp)
  229. file(GLOB STORM_STORAGE_FILES ${PROJECT_SOURCE_DIR}/src/storage/*.h ${PROJECT_SOURCE_DIR}/src/storage/*.cpp)
  230. file(GLOB_RECURSE STORM_STORAGE_DD_FILES ${PROJECT_SOURCE_DIR}/src/storage/dd/*.h ${PROJECT_SOURCE_DIR}/src/storage/dd/*.cpp)
  231. file(GLOB_RECURSE STORM_STORAGE_EXPRESSIONS_FILES ${PROJECT_SOURCE_DIR}/src/storage/expressions/*.h ${PROJECT_SOURCE_DIR}/src/storage/expressions/*.cpp)
  232. file(GLOB_RECURSE STORM_STORAGE_PRISM_FILES ${PROJECT_SOURCE_DIR}/src/storage/prism/*.h ${PROJECT_SOURCE_DIR}/src/storage/prism/*.cpp)
  233. file(GLOB_RECURSE STORM_UTILITY_FILES ${PROJECT_SOURCE_DIR}/src/utility/*.h ${PROJECT_SOURCE_DIR}/src/utility/*.cpp)
  234. # Test Sources
  235. # Note that the tests also need the source files, except for the main file
  236. file(GLOB_RECURSE STORM_FUNCTIONAL_TEST_FILES ${STORM_CPP_TESTS_BASE_PATH}/functional/*.h ${STORM_CPP_TESTS_BASE_PATH}/functional/*.cpp)
  237. file(GLOB_RECURSE STORM_PERFORMANCE_TEST_FILES ${STORM_CPP_TESTS_BASE_PATH}/performance/*.h ${STORM_CPP_TESTS_BASE_PATH}/performance/*.cpp)
  238. # Additional include files like the storm-config.h
  239. file(GLOB_RECURSE STORM_BUILD_HEADERS ${PROJECT_BINARY_DIR}/include/*.h)
  240. # Group the headers and sources
  241. source_group(main FILES ${STORM_MAIN_FILE})
  242. source_group(adapters FILES ${STORM_ADAPTERS_FILES})
  243. source_group(exceptions FILES ${STORM_EXCEPTIONS_FILES})
  244. source_group(formula FILES ${STORM_FORMULA_FILES})
  245. source_group(formula\\abstract FILES ${STORM_FORMULA_ABSTRACT_FILES})
  246. source_group(formula\\csl FILES ${STORM_FORMULA_CSL_FILES})
  247. source_group(formula\\ltl FILES ${STORM_FORMULA_LTL_FILES})
  248. source_group(formula\\prctl FILES ${STORM_FORMULA_PRCTL_FILES})
  249. source_group(generated FILES ${STORM_BUILD_HEADERS})
  250. source_group(modelchecker FILES ${STORM_MODELCHECKER_FILES})
  251. source_group(counterexamples FILES ${STORM_COUNTEREXAMPLES_FILES})
  252. source_group(models FILES ${STORM_MODELS_FILES})
  253. source_group(parser FILES ${STORM_PARSER_FILES})
  254. source_group(parser\\prismparser FILES ${STORM_PARSER_PRISMPARSER_FILES})
  255. source_group(settings FILES ${STORM_SETTINGS_FILES})
  256. source_group(solver FILES ${STORM_SOLVER_FILES})
  257. source_group(storage FILES ${STORM_STORAGE_FILES})
  258. source_group(storage\\dd FILES ${STORM_STORAGE_DD_FILES})
  259. source_group(storage\\expressions FILES ${STORM_STORAGE_EXPRESSIONS_FILES})
  260. source_group(storage\\prism FILES ${STORM_STORAGE_PRISM_FILES})
  261. source_group(utility FILES ${STORM_UTILITY_FILES})
  262. source_group(functional-test FILES ${STORM_FUNCTIONAL_TEST_FILES})
  263. source_group(performance-test FILES ${STORM_PERFORMANCE_TEST_FILES})
  264. # Add custom additional include or link directories
  265. if (ADDITIONAL_INCLUDE_DIRS)
  266. message(STATUS "StoRM - Using additional include directories ${ADDITIONAL_INCLUDE_DIRS}")
  267. include_directories(${ADDITIONAL_INCLUDE_DIRS})
  268. endif(ADDITIONAL_INCLUDE_DIRS)
  269. if (ADDITIONAL_LINK_DIRS)
  270. message(STATUS "StoRM - Using additional link directories ${ADDITIONAL_LINK_DIRS}")
  271. link_directories(${ADDITIONAL_LINK_DIRS})
  272. endif(ADDITIONAL_LINK_DIRS)
  273. #############################################################
  274. ##
  275. ## Pre executable-creation link_directories setup
  276. ##
  277. #############################################################
  278. if (ENABLE_GUROBI)
  279. link_directories("${GUROBI_ROOT}/lib")
  280. endif()
  281. if (ENABLE_Z3)
  282. link_directories("${Z3_ROOT}/bin")
  283. endif()
  284. if (ENABLE_MathSAT)
  285. link_directories("${MathSAT_ROOT}/lib")
  286. endif()
  287. if(GMP_FOUND)
  288. link_directories(${GMP_LIBRARY_DIR})
  289. elseif(MPIR_FOUND)
  290. link_directories(${GMP_MPIR_LIBRARY_DIR} ${GMP_MPIRXX_LIBRARY_DIR})
  291. else(GMP_FOUND)
  292. message(FATAL_ERROR "GMP is required for MathSAT, but was not found!")
  293. endif(GMP_FOUND)
  294. if ((NOT Boost_LIBRARY_DIRS) OR ("${Boost_LIBRARY_DIRS}" STREQUAL ""))
  295. set(Boost_LIBRARY_DIRS "${Boost_INCLUDE_DIRS}/stage/lib")
  296. endif ()
  297. link_directories(${Boost_LIBRARY_DIRS})
  298. if (TBB_FOUND AND STORM_USE_INTELTBB)
  299. link_directories(${TBB_LIBRARY_DIRS})
  300. endif()
  301. ###############################################################################
  302. ## #
  303. ## Executable Creation #
  304. ## #
  305. ## All link_directories() calls MUST be made before this point #
  306. ## #
  307. ###############################################################################
  308. add_executable(storm ${STORM_SOURCES} ${STORM_HEADERS} ${STORM_BUILD_HEADERS})
  309. add_executable(storm-functional-tests ${STORM_FUNCTIONAL_TEST_FILES} ${STORM_SOURCES_WITHOUT_MAIN} ${STORM_HEADERS} ${STORM_BUILD_HEADERS})
  310. add_executable(storm-performance-tests ${STORM_PERFORMANCE_TEST_FILES} ${STORM_SOURCES_WITHOUT_MAIN} ${STORM_HEADERS} ${STORM_BUILD_HEADERS})
  311. #############################################################
  312. ##
  313. ## Boost
  314. ##
  315. #############################################################
  316. include_directories(${Boost_INCLUDE_DIRS})
  317. target_link_libraries(storm ${Boost_LIBRARIES})
  318. target_link_libraries(storm-functional-tests ${Boost_LIBRARIES})
  319. target_link_libraries(storm-performance-tests ${Boost_LIBRARIES})
  320. #message(STATUS "BOOST_INCLUDE_DIRS is ${Boost_INCLUDE_DIRS}")
  321. #message(STATUS "BOOST_LIBRARY_DIRS is ${Boost_LIBRARY_DIRS}")
  322. #############################################################
  323. ##
  324. ## CUDD
  325. ##
  326. #############################################################
  327. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0")
  328. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/cudd")
  329. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/epd")
  330. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/mtr")
  331. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/nanotrav")
  332. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/obj")
  333. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/st")
  334. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/util")
  335. target_link_libraries(storm cudd)
  336. target_link_libraries(storm-functional-tests cudd)
  337. target_link_libraries(storm-performance-tests cudd)
  338. #############################################################
  339. ##
  340. ## LTL2DSTAR
  341. ##
  342. #############################################################
  343. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/ltl2dstar-0.5.1")
  344. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/ltl2dstar-0.5.1/src")
  345. target_link_libraries(storm ltl2dstar)
  346. target_link_libraries(storm-functional-tests ltl2dstar)
  347. target_link_libraries(storm-performance-tests ltl2dstar)
  348. #############################################################
  349. ##
  350. ## Gurobi (optional)
  351. ##
  352. #############################################################
  353. if (ENABLE_GUROBI)
  354. message (STATUS "StoRM - Linking with Gurobi")
  355. include_directories("${GUROBI_ROOT}/include")
  356. target_link_libraries(storm "gurobi56")
  357. target_link_libraries(storm-functional-tests "gurobi56")
  358. target_link_libraries(storm-performance-tests "gurobi56")
  359. endif(ENABLE_GUROBI)
  360. #############################################################
  361. ##
  362. ## glpk
  363. ##
  364. #############################################################
  365. message (STATUS "StoRM - Linking with glpk")
  366. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/glpk-4.53")
  367. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/glpk-4.53/src")
  368. target_link_libraries(storm "glpk")
  369. target_link_libraries(storm-functional-tests "glpk")
  370. target_link_libraries(storm-performance-tests "glpk")
  371. #############################################################
  372. ##
  373. ## Z3 (optional)
  374. ##
  375. #############################################################
  376. if (ENABLE_Z3)
  377. message (STATUS "StoRM - Linking with Z3")
  378. include_directories("${Z3_ROOT}/include")
  379. target_link_libraries(storm ${Z3_LIB_NAME})
  380. target_link_libraries(storm-functional-tests ${Z3_LIB_NAME})
  381. target_link_libraries(storm-performance-tests ${Z3_LIB_NAME})
  382. endif(ENABLE_Z3)
  383. #############################################################
  384. ##
  385. ## MathSAT (optional)
  386. ##
  387. #############################################################
  388. if (ENABLE_MathSAT)
  389. message (STATUS "StoRM - Linking with MathSAT")
  390. include_directories("${MathSAT_ROOT}/include")
  391. target_link_libraries(storm "mathsat")
  392. target_link_libraries(storm-functional-tests "mathsat")
  393. target_link_libraries(storm-performance-tests "mathsat")
  394. if(GMP_FOUND)
  395. include_directories("${GMP_INCLUDE_DIR}")
  396. target_link_libraries(storm "gmp")
  397. target_link_libraries(storm-functional-tests "gmp")
  398. target_link_libraries(storm-performance-tests "gmp")
  399. elseif(MPIR_FOUND)
  400. include_directories("${GMP_INCLUDE_DIR}")
  401. target_link_libraries(storm "mpir" "mpirxx")
  402. target_link_libraries(storm-functional-tests "mpir" "mpirxx")
  403. target_link_libraries(storm-performance-tests "mpir" "mpirxx")
  404. else(GMP_FOUND)
  405. message(FATAL_ERROR "GMP is required for MathSAT, but was not found!")
  406. endif(GMP_FOUND)
  407. endif(ENABLE_MathSAT)
  408. #############################################################
  409. ##
  410. ## Google Test gtest
  411. ##
  412. #############################################################
  413. set(gtest_force_shared_crt ON)
  414. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/gtest-1.7.0")
  415. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/gtest-1.7.0/include")
  416. enable_testing()
  417. target_link_libraries(storm-functional-tests gtest)
  418. target_link_libraries(storm-performance-tests gtest)
  419. add_test(NAME storm-functional-tests COMMAND storm-functional-tests)
  420. add_test(NAME storm-performance-tests COMMAND storm-performance-tests)
  421. #############################################################
  422. ##
  423. ## Log4CPlus
  424. ##
  425. #############################################################
  426. set(BUILD_SHARED_LIBS OFF CACHE BOOL "If TRUE, log4cplus is built as a shared library, otherwise as a static library")
  427. set(LOG4CPLUS_BUILD_LOGGINGSERVER OFF)
  428. set(LOG4CPLUS_BUILD_TESTING OFF)
  429. set(LOG4CPLUS_USE_UNICODE OFF)
  430. set(LOG4CPLUS_DEFINE_INSTALL_TARGET OFF)
  431. add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/log4cplus-1.1.3-rc1")
  432. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/log4cplus-1.1.3-rc1/include")
  433. include_directories("${PROJECT_BINARY_DIR}/resources/3rdparty/log4cplus-1.1.3-rc1/include") # This adds the defines.hxx file
  434. target_link_libraries(storm log4cplusS)
  435. target_link_libraries(storm-functional-tests log4cplusS)
  436. target_link_libraries(storm-performance-tests log4cplusS)
  437. if (UNIX AND NOT APPLE)
  438. target_link_libraries(storm rt)
  439. if (STORM_USE_COTIRE)
  440. target_link_libraries(storm_unity rt)
  441. endif(STORM_USE_COTIRE)
  442. target_link_libraries(storm-functional-tests rt)
  443. target_link_libraries(storm-performance-tests rt)
  444. endif(UNIX AND NOT APPLE)
  445. #############################################################
  446. ##
  447. ## Intel Threading Building Blocks (optional)
  448. ##
  449. #############################################################
  450. if (TBB_FOUND)
  451. message(STATUS "StoRM - Found Intel TBB with interface version ${TBB_INTERFACE_VERSION}.")
  452. if (STORM_USE_INTELTBB)
  453. message(STATUS "StoRM - Linking with Intel TBB in ${TBB_LIBRARY_DIRS}.")
  454. include_directories(${TBB_INCLUDE_DIRS})
  455. target_link_libraries(storm tbb tbbmalloc)
  456. target_link_libraries(storm-functional-tests tbb tbbmalloc)
  457. target_link_libraries(storm-performance-tests tbb tbbmalloc)
  458. endif(STORM_USE_INTELTBB)
  459. endif(TBB_FOUND)
  460. #############################################################
  461. ##
  462. ## Threads
  463. ##
  464. #############################################################
  465. include_directories(${THREADS_INCLUDE_DIRS})
  466. target_link_libraries(storm ${CMAKE_THREAD_LIBS_INIT})
  467. if (STORM_USE_COTIRE)
  468. target_link_libraries(storm_unity ${CMAKE_THREAD_LIBS_INIT})
  469. endif(STORM_USE_COTIRE)
  470. target_link_libraries(storm-functional-tests ${CMAKE_THREAD_LIBS_INIT})
  471. target_link_libraries(storm-performance-tests ${CMAKE_THREAD_LIBS_INIT})
  472. if (MSVC)
  473. # Add the DebugHelper DLL
  474. set(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} Dbghelp.lib")
  475. target_link_libraries(storm "Dbghelp.lib")
  476. target_link_libraries(storm-functional-tests "Dbghelp.lib")
  477. target_link_libraries(storm-performance-tests "Dbghelp.lib")
  478. endif(MSVC)
  479. # Print Cotire Usage Status
  480. message (STATUS "StoRM - Using Cotire: ${STORM_USE_COTIRE}")
  481. if (STORM_USE_COTIRE)
  482. # Include Cotire for PCH Generation
  483. set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/resources/cmake")
  484. include(cotire)
  485. cotire(storm)
  486. target_link_libraries(storm_unity ${Boost_LIBRARIES})
  487. #cotire(storm-functional-tests)
  488. #cotire(storm-performance-tests)
  489. endif()
  490. # Link against libc++abi if requested. May be needed to build on Linux systems using clang.
  491. if (LINK_LIBCXXABI)
  492. message (STATUS "StoRM - Linking against libc++abi.")
  493. target_link_libraries(storm "c++abi")
  494. target_link_libraries(storm-functional-tests "c++abi")
  495. target_link_libraries(storm-performance-tests "c++abi")
  496. endif(LINK_LIBCXXABI)
  497. # Add a target to generate API documentation with Doxygen
  498. if(DOXYGEN_FOUND)
  499. set(CMAKE_DOXYGEN_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/doc")
  500. string(REGEX REPLACE ";" " " CMAKE_DOXYGEN_INPUT_LIST "${PROJECT_SOURCE_DIR}/src")
  501. configure_file("${CMAKE_CURRENT_SOURCE_DIR}/doc/Doxyfile.in" "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" @ONLY)
  502. add_custom_target(doc ${DOXYGEN_EXECUTABLE} "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" COMMENT "Generating API documentation with Doxygen" VERBATIM)
  503. endif(DOXYGEN_FOUND)
  504. 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)
  505. 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)
  506. 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)
  507. set(CPPLINT_ARGS --filter=-whitespace/tab,-whitespace/line_length,-legal/copyright,-readability/streams)
  508. add_custom_target(style python cpplint.py ${CPPLINT_ARGS} `find ./src/ -iname "*.h" -or -iname "*.cpp" `)
  509. INSTALL(TARGETS storm storm-functional-tests storm-performance-tests
  510. RUNTIME DESTINATION bin
  511. LIBRARY DESTINATION lib
  512. ARCHIVE DESTINATION lib
  513. )
  514. include(StormCPackConfig.cmake)