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.

788 lines
29 KiB

  1. cmake_minimum_required (VERSION 2.8.6)
  2. cmake_policy(VERSION 3.2)
  3. # Set project name
  4. project (storm CXX C)
  5. # Add base folder for better inclusion paths
  6. include_directories("${PROJECT_SOURCE_DIR}")
  7. include_directories("${PROJECT_SOURCE_DIR}/src")
  8. # Add the resources/cmake folder to Module Search Path for FindTBB.cmake
  9. set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/resources/cmake/")
  10. include(ExternalProject)
  11. #############################################################
  12. ##
  13. ## CMake options of StoRM
  14. ##
  15. #############################################################
  16. option(STORM_DEVELOPER "Sets whether the development mode is used" OFF)
  17. option(STORM_USE_POPCNT "Sets whether the popcnt instruction is going to be used." ON)
  18. option(USE_BOOST_STATIC_LIBRARIES "Sets whether the Boost libraries should be linked statically." ON)
  19. option(STORM_USE_INTELTBB "Sets whether the Intel TBB libraries should be used." OFF)
  20. option(STORM_USE_GUROBI "Sets whether Gurobi should be used." OFF)
  21. option(STORM_USE_COTIRE "Sets whether Cotire should be used (for building precompiled headers)." OFF)
  22. option(LINK_LIBCXXABI "Sets whether libc++abi should be linked." OFF)
  23. option(USE_LIBCXX "Sets whether the standard library is libc++." OFF)
  24. option(USE_CARL "Sets whether carl should be included." ON)
  25. option(USE_XERCES "Sets whether xerces should be used." OFF)
  26. option(FORCE_COLOR "Force color output" OFF)
  27. option(STORM_PYTHON "Builds the API for Python" OFF)
  28. option(STORM_COMPILE_WITH_CCACHE "Compile using CCache" ON)
  29. option(STORM_LOG_DISABLE_DEBUG "Disable log and trace message support" OFF)
  30. set(BOOST_ROOT "" CACHE STRING "A hint to the root directory of Boost (optional).")
  31. set(GUROBI_ROOT "" CACHE STRING "A hint to the root directory of Gurobi (optional).")
  32. set(Z3_ROOT "" CACHE STRING "A hint to the root directory of Z3 (optional).")
  33. set(CUDA_ROOT "" CACHE STRING "The hint to the root directory of CUDA (optional).")
  34. set(MSAT_ROOT "" CACHE STRING "The hint to the root directory of MathSAT (optional).")
  35. set(ADDITIONAL_INCLUDE_DIRS "" CACHE STRING "Additional directories added to the include directories.")
  36. set(ADDITIONAL_LINK_DIRS "" CACHE STRING "Additional directories added to the link directories.")
  37. # If the STORM_DEVELOPER option was turned on, we will target a debug version.
  38. if (STORM_DEVELOPER)
  39. message(STATUS "StoRM - Using development mode")
  40. set(CMAKE_BUILD_TYPE "DEBUG" CACHE STRING "Set the build type" FORCE)
  41. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSTORM_DEV")
  42. endif()
  43. message(STATUS "StoRM - Building ${CMAKE_BUILD_TYPE} version.")
  44. if(STORM_COMPILE_WITH_CCACHE)
  45. find_program(CCACHE_FOUND ccache)
  46. if(CCACHE_FOUND)
  47. message(STATUS "StoRM - Using ccache")
  48. set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
  49. set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
  50. else()
  51. message(STATUS "Could not find ccache")
  52. endif()
  53. endif()
  54. # Base path for test files
  55. set(STORM_CPP_TESTS_BASE_PATH "${PROJECT_SOURCE_DIR}/test")
  56. set(STORMPY_OUTPUT_DIR "${PROJECT_BINARY_DIR}/stormpy")
  57. set(STORMPY_SOURCE_DIR "${PROJECT_SOURCE_DIR}/stormpy")
  58. # Auto-detect operating system.
  59. set(MACOSX 0)
  60. set(LINUX 0)
  61. if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
  62. # Mac OS
  63. set(OPERATING_SYSTEM "Mac OS")
  64. set(MACOSX 1)
  65. elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
  66. # Linux
  67. set(OPERATING_SYSTEM "Linux")
  68. set(LINUX 1)
  69. elseif(WIN32)
  70. # Assuming Windows.
  71. set(OPERATING_SYSTEM "Windows")
  72. else()
  73. message(WARNING "We are unsure about your operating system.")
  74. set(OPERATING_SYSTEM "Linux")
  75. set(LINUX 1)
  76. ENDIF()
  77. message(STATUS "Operating system: ${OPERATING_SYSTEM}")
  78. set(DYNAMIC_EXT ".so")
  79. set(STATIC_EXT ".a")
  80. if(MACOSX)
  81. set(DYNAMIC_EXT ".dylib")
  82. set(STATIC_EXT ".a")
  83. elseif (WIN32)
  84. set(DYNAMIC_EXT ".dll")
  85. set(STATIC_EXT ".lib")
  86. endif()
  87. message(STATUS "Assuming extension for shared libraries: ${DYNAMIC_EXT}")
  88. message(STATUS "Assuming extension for static libraries: ${STATIC_EXT}")
  89. #############################################################
  90. ##
  91. ## Compiler specific settings and definitions
  92. ##
  93. #############################################################
  94. # Path to the no-strict-aliasing target
  95. set(CONVERSIONHELPER_TARGET "${PROJECT_SOURCE_DIR}/src/utility/ConversionHelper.cpp")
  96. if(CMAKE_COMPILER_IS_GNUCC)
  97. set(STORM_COMPILED_BY "GCC")
  98. # Set standard flags for GCC
  99. set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops")
  100. set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -funroll-loops")
  101. add_definitions(-DBOOST_RESULT_OF_USE_DECLTYPE)
  102. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -Wall -pedantic -Wno-deprecated-declarations -Wno-unused-local-typedefs -Wno-unknown-pragmas")
  103. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -pedantic -Wno-deprecated-declarations")
  104. # Turn on popcnt instruction if desired (yes by default)
  105. if (STORM_USE_POPCNT)
  106. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt")
  107. endif(STORM_USE_POPCNT)
  108. # Set the no-strict-aliasing target for GCC
  109. set_source_files_properties(${CONVERSIONHELPER_TARGET} PROPERTIES COMPILE_FLAGS " -fno-strict-aliasing")
  110. elseif(MSVC)
  111. set(STORM_COMPILED_BY "MSVC")
  112. # required for GMM to compile, ugly error directive in their code
  113. add_definitions(/D_SCL_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS)
  114. # 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)
  115. add_definitions(/bigobj)
  116. # required by GTest and PrismGrammar::createIntegerVariable
  117. add_definitions(/D_VARIADIC_MAX=10)
  118. # Windows.h breaks GMM in gmm_except.h because of its macro definition for min and max
  119. add_definitions(/DNOMINMAX)
  120. # Boost Defs, required for using boost's transform iterator
  121. add_definitions(/DBOOST_RESULT_OF_USE_DECLTYPE)
  122. # since nobody cares at the moment
  123. add_definitions(/wd4250)
  124. # MSVC does not do strict-aliasing, so no option needed
  125. else(CLANG)
  126. set(STORM_COMPILED_BY "Clang (LLVM)")
  127. # As CLANG is not set as a variable, we need to set it in case we have not matched another compiler.
  128. set (CLANG ON)
  129. # Set standard flags for clang
  130. set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops -O3")
  131. if(UNIX AND NOT APPLE AND NOT USE_LIBCXX)
  132. set(CLANG_STDLIB libstdc++)
  133. message(STATUS "StoRM - Linking against libstdc++")
  134. else()
  135. set(CLANG_STDLIB libc++)
  136. message(STATUS "StoRM - Linking against libc++")
  137. # Disable Cotire
  138. set(STORM_USE_COTIRE OFF)
  139. # Set up some Xcode specific settings
  140. set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++11")
  141. set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
  142. endif()
  143. add_definitions(-DBOOST_RESULT_OF_USE_DECLTYPE)
  144. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -stdlib=${CLANG_STDLIB} -Wall -pedantic -Wno-newline-eof -Wno-mismatched-tags -Wno-unused-local-typedefs -ftemplate-depth=1024 -Wno-parentheses-equality")
  145. if(FORCE_COLOR)
  146. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fcolor-diagnostics")
  147. endif()
  148. # Turn on popcnt instruction if desired (yes by default)
  149. if (STORM_USE_POPCNT)
  150. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt")
  151. endif(STORM_USE_POPCNT)
  152. # Set the no-strict-aliasing target for Clang
  153. set_source_files_properties(${CONVERSIONHELPER_TARGET} PROPERTIES COMPILE_FLAGS " -fno-strict-aliasing ")
  154. endif()
  155. if(CCACHE_FOUND)
  156. set(STORM_COMPILED_BY "${STORM_COMPILED_BY} (ccache)")
  157. endif()
  158. message(STATUS "StoRM - Using Compiler Configuration: ${STORM_COMPILED_BY}")
  159. #############################################################
  160. #############################################################
  161. ##
  162. ## Inclusion of required libraries
  163. ##
  164. #############################################################
  165. #############################################################
  166. #############################################################
  167. ##
  168. ## Include the targets for non-system resources
  169. ##
  170. #############################################################
  171. # In 3rdparty, targets are being defined that can be used
  172. # in the the system does not have a library
  173. add_subdirectory(resources/3rdparty)
  174. #############################################################
  175. ##
  176. ## gmm
  177. ##
  178. #############################################################
  179. # Add the shipped version of GMM to the include pathes
  180. set(GMMXX_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/resources/3rdparty/gmm-5.0/include")
  181. include_directories(${GMMXX_INCLUDE_DIR})
  182. #############################################################
  183. ##
  184. ## gmp
  185. ##
  186. #############################################################
  187. # GMP is optional (unless MathSAT is used, see below)
  188. find_package(GMP QUIET)
  189. #############################################################
  190. ##
  191. ## Boost
  192. ##
  193. #############################################################
  194. # Boost Option variables
  195. set(Boost_USE_STATIC_LIBS ${USE_BOOST_STATIC_LIBRARIES})
  196. set(Boost_USE_MULTITHREADED ON)
  197. set(Boost_USE_STATIC_RUNTIME OFF)
  198. find_package(Boost 1.56.0 QUIET REQUIRED)
  199. if ((NOT Boost_LIBRARY_DIRS) OR ("${Boost_LIBRARY_DIRS}" STREQUAL ""))
  200. set(Boost_LIBRARY_DIRS "${Boost_INCLUDE_DIRS}/stage/lib")
  201. endif ()
  202. link_directories(${Boost_LIBRARY_DIRS})
  203. include_directories(${Boost_INCLUDE_DIRS})
  204. list(APPEND STORM_LINK_LIBRARIES ${Boost_LIBRARIES})
  205. message(STATUS "StoRM - Using Boost ${Boost_VERSION} (lib ${Boost_LIB_VERSION})")
  206. #message(STATUS "StoRM - BOOST_INCLUDE_DIRS is ${Boost_INCLUDE_DIRS}")
  207. #message(STATUS "StoRM - BOOST_LIBRARY_DIRS is ${Boost_LIBRARY_DIRS}")
  208. #############################################################
  209. ##
  210. ## ExprTk
  211. ##
  212. #############################################################
  213. # Use the shipped version of ExprTK
  214. message (STATUS "StoRM - Including ExprTk")
  215. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/exprtk")
  216. #############################################################
  217. ##
  218. ## Z3 (optional)
  219. ##
  220. #############################################################
  221. find_package(Z3 QUIET)
  222. # Z3 Defines
  223. set(STORM_HAVE_Z3 ${Z3_FOUND})
  224. if(Z3_FOUND)
  225. message (STATUS "StoRM - Linking with Z3")
  226. include_directories(${Z3_INCLUDE_DIRS})
  227. list(APPEND STORM_LINK_LIBRARIES ${Z3_LIBRARIES})
  228. endif(Z3_FOUND)
  229. #############################################################
  230. ##
  231. ## glpk
  232. ##
  233. #############################################################
  234. find_package(GLPK QUIET)
  235. if(GLPK_FOUND)
  236. message (STATUS "StoRM - Using system version of GLPK")
  237. else()
  238. message (STATUS "StoRM - Using shipped version of GLPK")
  239. set(GLPK_LIBRARIES ${CMAKE_BINARY_DIR}/resources/3rdparty/glpk-4.57/lib/libglpk${DYNAMIC_EXT})
  240. set(GLPK_INCLUDE_DIR ${CMAKE_BINARY_DIR}/resources/3rdparty/glpk-4.57/include)
  241. set(GLPK_VERSION_STRING 4.57)
  242. add_dependencies(resources glpk)
  243. endif()
  244. # Since there is a shipped version, always use GLPK
  245. set(STORM_HAVE_GLPK ON)
  246. message (STATUS "StoRM - Linking with glpk ${GLPK_VERSION_STRING}")
  247. include_directories(${GLPK_INCLUDE_DIR})
  248. list(APPEND STORM_LINK_LIBRARIES ${GLPK_LIBRARIES})
  249. #############################################################
  250. ##
  251. ## Gurobi (optional)
  252. ##
  253. #############################################################
  254. if (STORM_USE_GUROBI)
  255. find_package(Gurobi QUIET REQUIRED)
  256. set(STORM_HAVE_GUROBI ${GUROBI_FOUND})
  257. if (GUROBI_FOUND)
  258. message (STATUS "StoRM - Linking with Gurobi")
  259. include_directories(${GUROBI_INCLUDE_DIRS})
  260. list(APPEND STORM_LINK_LIBRARIES ${GUROBI_LIBRARY})
  261. #link_directories("${GUROBI_ROOT}/lib")
  262. else()
  263. #message(FATAL_ERROR "StoRM - Gurobi was requested, but not found!")
  264. endif()
  265. else()
  266. set(STORM_HAVE_GUROBI OFF)
  267. endif()
  268. #############################################################
  269. ##
  270. ## CUDD
  271. ##
  272. #############################################################
  273. # Do not use system CUDD, StoRM has a modified version
  274. set(CUDD_INCLUDE_DIR ${CMAKE_BINARY_DIR}/resources/3rdparty/cudd-3.0.0/include)
  275. set(CUDD_SHARED_LIBRARY ${CMAKE_BINARY_DIR}/resources/3rdparty/cudd-3.0.0/lib/libcudd${DYNAMIC_EXT})
  276. set(CUDD_STATIC_LIBRARY ${CMAKE_BINARY_DIR}/resources/3rdparty/cudd-3.0.0/lib/libcudd${STATIC_EXT})
  277. set(CUDD_VERSION_STRING 3.0.0)
  278. list(APPEND STORM_LINK_LIBRARIES ${CUDD_SHARED_LIBRARY})
  279. add_dependencies(resources cudd3)
  280. message(STATUS "StoRM - Linking with CUDD ${CUDD_VERSION_STRING}")
  281. #message("StoRM - CUDD include dir: ${CUDD_INCLUDE_DIR}")
  282. include_directories(${CUDD_INCLUDE_DIR})
  283. #############################################################
  284. ##
  285. ## CLN
  286. ##
  287. #############################################################
  288. find_package(CLN QUIET)
  289. if(CLN_FOUND)
  290. set(STORM_HAVE_CLN ON)
  291. message(STATUS "StoRM - Linking with CLN ${CLN_VERSION_STRING}")
  292. include_directories("${CLN_INCLUDE_DIR}")
  293. list(APPEND STORM_LINK_LIBRARIES ${CLN_LIBRARIES})
  294. else()
  295. set(STORM_HAVE_CLN OFF)
  296. if(NOT GMP_FOUND)
  297. message(FATAL_ERROR "StoRM - Neither CLN nor GMP found")
  298. endif()
  299. endif()
  300. #############################################################
  301. ##
  302. ## carl
  303. ##
  304. #############################################################
  305. set(STORM_HAVE_CARL OFF)
  306. if(USE_CARL)
  307. find_package(carl QUIET REQUIRED)
  308. if(carl_FOUND)
  309. set(STORM_HAVE_CARL ON)
  310. message(STATUS "StoRM - Linking with carl ${carl_VERSION_STRING}")
  311. include_directories("${carl_INCLUDE_DIR}")
  312. list(APPEND STORM_LINK_LIBRARIES ${carl_LIBRARIES})
  313. else()
  314. message(FATAL_ERROR "StoRM - CARL was requested but not found")
  315. endif()
  316. endif()
  317. #############################################################
  318. ##
  319. ## SMT-RAT
  320. ##
  321. #############################################################
  322. # No find routine yet
  323. #find_package(smtrat QUIET)
  324. # Not yet supported
  325. set(smtrat_FOUND OFF)
  326. set(STORM_HAVE_SMTRAT OFF)
  327. if(smtrat_FOUND)
  328. set(STORM_HAVE_SMTRAT ON)
  329. message(STATUS "StoRM - Linking with smtrat.")
  330. include_directories("${smtrat_INCLUDE_DIR}")
  331. list(APPEND STORM_LINK_LIBRARIES ${smtrat_LIBRARIES})
  332. endif()
  333. #############################################################
  334. ##
  335. ## GiNaC
  336. ##
  337. #############################################################
  338. find_package(GiNaC QUIET)
  339. if(GINAC_FOUND)
  340. set(STORM_HAVE_GINAC ON)
  341. message(STATUS "StoRM - Linking with GiNaC ${GINAC_VERSION_STRING}")
  342. # Right now only link with GiNaC for carl
  343. #include_directories("${GINAC_INCLUDE_DIR}")
  344. list(APPEND STORM_LINK_LIBRARIES ${GINAC_LIBRARIES})
  345. else()
  346. set(STORM_HAVE_GINAC OFF)
  347. #TODO: Check if CARL actually requires the use of GiNaC
  348. endif()
  349. #############################################################
  350. ##
  351. ## MathSAT (optional)
  352. ##
  353. #############################################################
  354. if ("${MSAT_ROOT}" STREQUAL "")
  355. set(ENABLE_MSAT OFF)
  356. else()
  357. set(ENABLE_MSAT ON)
  358. endif()
  359. # MathSAT Defines
  360. set(STORM_HAVE_MSAT ${ENABLE_MSAT})
  361. if (ENABLE_MSAT)
  362. message (STATUS "StoRM - Linking with MathSAT")
  363. link_directories("${MSAT_ROOT}/lib")
  364. include_directories("${MSAT_ROOT}/include")
  365. list(APPEND STORM_LINK_LIBRARIES "mathsat")
  366. if(GMP_FOUND)
  367. include_directories("${GMP_INCLUDE_DIR}")
  368. list(APPEND STORM_LINK_LIBRARIES "gmp")
  369. elseif(MPIR_FOUND)
  370. include_directories("${GMP_INCLUDE_DIR}")
  371. list(APPEND STORM_LINK_LIBRARIES "mpir" "mpirxx")
  372. else(GMP_FOUND)
  373. message(FATAL_ERROR "GMP is required for MathSAT, but was not found!")
  374. endif(GMP_FOUND)
  375. endif(ENABLE_MSAT)
  376. #############################################################
  377. ##
  378. ## Xerces
  379. ##
  380. #############################################################
  381. if(USE_XERCES)
  382. find_package(Xerces QUIET REQUIRED)
  383. if(XERCES_FOUND)
  384. message(STATUS "StoRM - Use system version of xerces")
  385. else()
  386. message(STATUS "StoRM - Use shipped version of xerces")
  387. set(XERCES_ROOT ${CMAKE_BINARY_DIR}/resources/3rdparty/xercesc-3.1.2)
  388. set(XERCESC_INCLUDE ${XERCES_ROOT}/include)
  389. set(XERCES_LIBRARY_PATH ${XERCES_ROOT}/lib)
  390. set(XERCESC_LIBRARIES ${XERCES_LIBRARY_PATH}/libxerces-c.a)
  391. add_dependencies(resources xercesc)
  392. endif()
  393. message (STATUS "StoRM - Linking with xercesc")
  394. set(STORM_HAVE_XERCES ON)
  395. include_directories(${XERCESC_INCLUDE})
  396. list(APPEND STORM_LINK_LIBRARIES ${XERCESC_LIBRARIES})
  397. endif(USE_XERCES)
  398. #############################################################
  399. ##
  400. ## Sylvan
  401. ##
  402. #############################################################
  403. message(STATUS "StoRM - Using shipped version of sylvan")
  404. message(STATUS "StoRM - Linking with sylvan")
  405. include_directories("${Sylvan_INCLUDE_DIR}")
  406. list(APPEND STORM_LINK_LIBRARIES ${Sylvan_LIBRARY})
  407. add_dependencies(resources sylvan)
  408. if(${OPERATING_SYSTEM} MATCHES "Linux")
  409. find_package(Hwloc QUIET REQUIRED)
  410. if(Hwloc_FOUND)
  411. message(STATUS "StoRM - Linking with hwloc ${Hwloc_VERSION}")
  412. list(APPEND STORM_LINK_LIBRARIES ${Hwloc_LIBRARIES})
  413. else()
  414. message(FATAL_ERROR "HWLOC is required but was not found.")
  415. endif()
  416. endif()
  417. #############################################################
  418. ##
  419. ## Google Test gtest
  420. ##
  421. #############################################################
  422. add_dependencies(test-resources googletest)
  423. list(APPEND STORM_TEST_LINK_LIBRARIES ${GTEST_LIBRARIES})
  424. #############################################################
  425. ##
  426. ## Intel Threading Building Blocks (optional)
  427. ##
  428. #############################################################
  429. set(STORM_HAVE_INTELTBB OFF)
  430. if (STORM_USE_INTELTBB)
  431. # Point to shipped TBB directory
  432. set(TBB_INSTALL_DIR "${PROJECT_SOURCE_DIR}/resources/3rdparty/tbb42_20140122_merged-win-lin-mac")
  433. find_package(TBB QUIET REQUIRED)
  434. if (TBB_FOUND)
  435. message(STATUS "StoRM - Found Intel TBB with interface version ${TBB_INTERFACE_VERSION}.")
  436. message(STATUS "StoRM - Linking with Intel TBB in ${TBB_LIBRARY_DIRS}.")
  437. set(STORM_HAVE_INTELTBB ON)
  438. link_directories(${TBB_LIBRARY_DIRS})
  439. include_directories(${TBB_INCLUDE_DIRS})
  440. list(APPEND STORM_LINK_LIBRARIES tbb tbbmalloc)
  441. else(TBB_FOUND)
  442. message(FATAL_ERROR "StoRM - TBB was requested, but not found!")
  443. endif(TBB_FOUND)
  444. endif(STORM_USE_INTELTBB)
  445. #############################################################
  446. ##
  447. ## Threads
  448. ##
  449. #############################################################
  450. find_package(Threads QUIET REQUIRED)
  451. if (NOT Threads_FOUND)
  452. message(FATAL_ERROR "StoRM - Threads was requested, but not found!")
  453. endif()
  454. include_directories(${THREADS_INCLUDE_DIRS})
  455. list(APPEND STORM_LINK_LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
  456. if (STORM_USE_COTIRE)
  457. target_link_libraries(storm_unity ${CMAKE_THREAD_LIBS_INIT})
  458. endif(STORM_USE_COTIRE)
  459. if (MSVC)
  460. # Add the DebugHelper DLL
  461. set(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} Dbghelp.lib")
  462. target_link_libraries(storm "Dbghelp.lib")
  463. endif(MSVC)
  464. #############################################################
  465. ##
  466. ## CUDA Library generation
  467. ##
  468. #############################################################
  469. if ("${CUDA_ROOT}" STREQUAL "")
  470. set(ENABLE_CUDA OFF)
  471. else()
  472. set(ENABLE_CUDA ON)
  473. endif()
  474. # CUDA Defines
  475. if (ENABLE_CUDA)
  476. set(STORM_CPP_CUDA_DEF "define")
  477. else()
  478. set(STORM_CPP_CUDA_DEF "undef")
  479. endif()
  480. # CUDA Defines
  481. set(STORM_CPP_CUDAFORSTORM_DEF "undef")
  482. if(ENABLE_CUDA)
  483. # Test for type alignment
  484. try_run(STORM_CUDA_RUN_RESULT_TYPEALIGNMENT STORM_CUDA_COMPILE_RESULT_TYPEALIGNMENT
  485. ${PROJECT_BINARY_DIR} "${PROJECT_SOURCE_DIR}/cuda/CMakeAlignmentCheck.cpp"
  486. COMPILE_OUTPUT_VARIABLE OUTPUT_TEST_VAR
  487. )
  488. if(NOT STORM_CUDA_COMPILE_RESULT_TYPEALIGNMENT)
  489. message(FATAL_ERROR "StoRM (CudaPlugin) - Could not test type alignment, there was an Error while compiling the file ${PROJECT_SOURCE_DIR}/cuda/CMakeAlignmentCheck.cpp: ${OUTPUT_TEST_VAR}")
  490. elseif(STORM_CUDA_RUN_RESULT_TYPEALIGNMENT EQUAL 0)
  491. message(STATUS "StoRM (CudaPlugin) - Result of Type Alignment Check: OK.")
  492. else()
  493. message(FATAL_ERROR "StoRM (CudaPlugin) - Result of Type Alignment Check: FAILED (Code ${STORM_CUDA_RUN_RESULT_TYPEALIGNMENT})")
  494. endif()
  495. # Test for Float 64bit Alignment
  496. try_run(STORM_CUDA_RUN_RESULT_FLOATALIGNMENT STORM_CUDA_COMPILE_RESULT_FLOATALIGNMENT
  497. ${PROJECT_BINARY_DIR} "${PROJECT_SOURCE_DIR}/cuda/CMakeFloatAlignmentCheck.cpp"
  498. COMPILE_OUTPUT_VARIABLE OUTPUT_TEST_VAR
  499. )
  500. if(NOT STORM_CUDA_COMPILE_RESULT_FLOATALIGNMENT)
  501. message(FATAL_ERROR "StoRM (CudaPlugin) - Could not test float type alignment, there was an Error while compiling the file ${PROJECT_SOURCE_DIR}/cuda/CMakeFloatAlignmentCheck.cpp: ${OUTPUT_TEST_VAR}")
  502. elseif(STORM_CUDA_RUN_RESULT_FLOATALIGNMENT EQUAL 2)
  503. message(STATUS "StoRM (CudaPlugin) - Result of Float Type Alignment Check: 64bit alignment active.")
  504. set(STORM_CUDAPLUGIN_FLOAT_64BIT_ALIGN_DEF "define")
  505. elseif(STORM_CUDA_RUN_RESULT_FLOATALIGNMENT EQUAL 3)
  506. message(STATUS "StoRM (CudaPlugin) - Result of Float Type Alignment Check: 64bit alignment disabled.")
  507. set(STORM_CUDAPLUGIN_FLOAT_64BIT_ALIGN_DEF "undef")
  508. else()
  509. message(FATAL_ERROR "StoRM (CudaPlugin) - Result of Float Type Alignment Check: FAILED (Code ${STORM_CUDA_RUN_RESULT_FLOATALIGNMENT})")
  510. endif()
  511. #
  512. # Make a version file containing the current version from git.
  513. #
  514. include(GetGitRevisionDescription)
  515. git_describe_checkout(STORM_GIT_VERSION_STRING)
  516. # Parse the git Tag into variables
  517. string(REGEX REPLACE "^([0-9]+)\\..*" "\\1" STORM_CUDAPLUGIN_VERSION_MAJOR "${STORM_GIT_VERSION_STRING}")
  518. string(REGEX REPLACE "^[0-9]+\\.([0-9]+).*" "\\1" STORM_CUDAPLUGIN_VERSION_MINOR "${STORM_GIT_VERSION_STRING}")
  519. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" STORM_CUDAPLUGIN_VERSION_PATCH "${STORM_GIT_VERSION_STRING}")
  520. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-([0-9]+)\\-.*" "\\1" STORM_CUDAPLUGIN_VERSION_COMMITS_AHEAD "${STORM_GIT_VERSION_STRING}")
  521. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-([a-z0-9]+).*" "\\1" STORM_CUDAPLUGIN_VERSION_HASH "${STORM_GIT_VERSION_STRING}")
  522. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-[a-z0-9]+\\-(.*)" "\\1" STORM_CUDAPLUGIN_VERSION_APPENDIX "${STORM_GIT_VERSION_STRING}")
  523. if ("${STORM_CUDAPLUGIN_VERSION_APPENDIX}" MATCHES "^.*dirty.*$")
  524. set(STORM_CUDAPLUGIN_VERSION_DIRTY 1)
  525. else()
  526. set(STORM_CUDAPLUGIN_VERSION_DIRTY 0)
  527. endif()
  528. message(STATUS "StoRM (CudaPlugin) - Version information: ${STORM_CUDAPLUGIN_VERSION_MAJOR}.${STORM_CUDAPLUGIN_VERSION_MINOR}.${STORM_CUDAPLUGIN_VERSION_PATCH} (${STORM_CUDAPLUGIN_VERSION_COMMITS_AHEAD} commits ahead of Tag) build from ${STORM_CUDAPLUGIN_VERSION_HASH} (Dirty: ${STORM_CUDAPLUGIN_VERSION_DIRTY})")
  529. # Configure a header file to pass some of the CMake settings to the source code
  530. configure_file (
  531. "${PROJECT_SOURCE_DIR}/cuda/storm-cudaplugin-config.h.in"
  532. "${PROJECT_BINARY_DIR}/include/storm-cudaplugin-config.h"
  533. )
  534. #create library
  535. find_package(CUDA REQUIRED)
  536. set(CUSP_INCLUDE_DIRS "${PROJECT_SOURCE_DIR}/resources/3rdparty/cusplibrary")
  537. find_package(Cusp REQUIRED)
  538. find_package(Thrust REQUIRED)
  539. set(STORM_CUDA_LIB_NAME "storm-cuda")
  540. file(GLOB_RECURSE STORM_CUDA_KERNEL_FILES ${PROJECT_SOURCE_DIR}/cuda/kernels/*.cu)
  541. file(GLOB_RECURSE STORM_CUDA_HEADER_FILES ${PROJECT_SOURCE_DIR}/cuda/kernels/*.h)
  542. source_group(kernels FILES ${STORM_CUDA_KERNEL_FILES} ${STORM_CUDA_HEADER_FILES})
  543. include_directories(${PROJECT_SOURCE_DIR}/cuda/kernels/)
  544. #set(CUDA_PROPAGATE_HOST_FLAGS OFF)
  545. set(CUDA_NVCC_FLAGS "-arch=sm_30")
  546. #############################################################
  547. ##
  548. ## CUSP
  549. ##
  550. #############################################################
  551. if(CUSP_FOUND)
  552. include_directories(${CUSP_INCLUDE_DIR})
  553. cuda_include_directories(${CUSP_INCLUDE_DIR})
  554. message(STATUS "StoRM (CudaPlugin) - Found CUSP Version ${CUSP_VERSION} in location ${CUSP_INCLUDE_DIR}")
  555. else()
  556. message(FATAL_ERROR "StoRM (CudaPlugin) - Could not find CUSP!")
  557. endif()
  558. #############################################################
  559. ##
  560. ## Thrust
  561. ##
  562. #############################################################
  563. if(THRUST_FOUND)
  564. include_directories(${THRUST_INCLUDE_DIR})
  565. cuda_include_directories(${THRUST_INCLUDE_DIR})
  566. message(STATUS "StoRM (CudaPlugin) - Found Thrust Version ${THRUST_VERSION} in location ${THRUST_INCLUDE_DIR}")
  567. else()
  568. message(FATAL_ERROR "StoRM (CudaPlugin) - Could not find Thrust! Check your CUDA installation.")
  569. endif()
  570. include_directories(${CUDA_INCLUDE_DIRS})
  571. include_directories(${ADDITIONAL_INCLUDE_DIRS})
  572. cuda_add_library(${STORM_CUDA_LIB_NAME}
  573. ${STORM_CUDA_KERNEL_FILES} ${STORM_CUDA_HEADER_FILES}
  574. )
  575. message (STATUS "StoRM - Linking with CUDA")
  576. list(APPEND STORM_LINK_LIBRARIES ${STORM_CUDA_LIB_NAME})
  577. include_directories("${PROJECT_SOURCE_DIR}/cuda/kernels/")
  578. endif()
  579. #############################################################
  580. ##
  581. ## Cotire
  582. ##
  583. #############################################################
  584. message (STATUS "StoRM - Using Cotire: ${STORM_USE_COTIRE}")
  585. if (STORM_USE_COTIRE)
  586. # Include Cotire for PCH Generation
  587. set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/resources/cmake")
  588. include(cotire)
  589. cotire(storm)
  590. target_link_libraries(storm_unity ${Boost_LIBRARIES})
  591. #cotire(storm-functional-tests)
  592. #cotire(storm-performance-tests)
  593. endif()
  594. #############################################################
  595. ##
  596. ## libc++abi
  597. ##
  598. #############################################################
  599. # Link against libc++abi if requested. May be needed to build on Linux systems using clang.
  600. if (LINK_LIBCXXABI)
  601. message (STATUS "StoRM - Linking against libc++abi.")
  602. target_link_libraries(storm "c++abi")
  603. endif(LINK_LIBCXXABI)
  604. #############################################################
  605. ##
  606. ## Doxygen
  607. ##
  608. #############################################################
  609. find_package(Doxygen REQUIRED)
  610. # Add a target to generate API documentation with Doxygen
  611. if(DOXYGEN_FOUND)
  612. set(CMAKE_DOXYGEN_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/doc")
  613. string(REGEX REPLACE ";" " " CMAKE_DOXYGEN_INPUT_LIST "${PROJECT_SOURCE_DIR}/src")
  614. configure_file("${CMAKE_CURRENT_SOURCE_DIR}/doc/Doxyfile.in" "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" @ONLY)
  615. add_custom_target(doc ${DOXYGEN_EXECUTABLE} "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" COMMENT "Generating API documentation with Doxygen" VERBATIM)
  616. endif(DOXYGEN_FOUND)
  617. #############################################################
  618. ##
  619. ## CMake-generated Config File for StoRM
  620. ##
  621. #############################################################
  622. #
  623. # Make a version file containing the current version from git.
  624. #
  625. include(GetGitRevisionDescription)
  626. git_describe_checkout(STORM_GIT_VERSION_STRING)
  627. message(STATUS "STORM_GIT_VERSION_STRING: ${STORM_GIT_VERSION_STRING}")
  628. # Parse the git Tag into variables
  629. string(REGEX REPLACE "^([0-9]+)\\..*" "\\1" STORM_CPP_VERSION_MAJOR "${STORM_GIT_VERSION_STRING}")
  630. string(REGEX REPLACE "^[0-9]+\\.([0-9]+).*" "\\1" STORM_CPP_VERSION_MINOR "${STORM_GIT_VERSION_STRING}")
  631. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" STORM_CPP_VERSION_PATCH "${STORM_GIT_VERSION_STRING}")
  632. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-([0-9]+)\\-.*" "\\1" STORM_CPP_VERSION_COMMITS_AHEAD "${STORM_GIT_VERSION_STRING}")
  633. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-([a-z0-9]+).*" "\\1" STORM_CPP_VERSION_HASH "${STORM_GIT_VERSION_STRING}")
  634. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-[a-z0-9]+\\-(.*)" "\\1" STORM_CPP_VERSION_APPENDIX "${STORM_GIT_VERSION_STRING}")
  635. if ("${STORM_CPP_VERSION_APPENDIX}" MATCHES "^.*dirty.*$")
  636. set(STORM_CPP_VERSION_DIRTY 1)
  637. else()
  638. set(STORM_CPP_VERSION_DIRTY 0)
  639. endif()
  640. 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})")
  641. # Configure a header file to pass some of the CMake settings to the source code
  642. configure_file (
  643. "${PROJECT_SOURCE_DIR}/storm-config.h.in"
  644. "${PROJECT_BINARY_DIR}/include/storm-config.h"
  645. )
  646. # Configure a header file to pass the storm version to the source code
  647. configure_file (
  648. "${PROJECT_SOURCE_DIR}/storm-version.cpp.in"
  649. "${PROJECT_SOURCE_DIR}/src/utility/storm-version.cpp"
  650. )
  651. set(STORM_GENERATED_SOURCES "${PROJECT_BINARY_DIR}/src/utility/storm-version.cpp")
  652. # Add the binary dir include directory for storm-config.h
  653. include_directories("${PROJECT_BINARY_DIR}/include")
  654. add_subdirectory(src)
  655. add_subdirectory(test)
  656. #############################################################
  657. ##
  658. ## memcheck targets
  659. ##
  660. #############################################################
  661. 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)
  662. 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)
  663. 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)
  664. set(CPPLINT_ARGS --filter=-whitespace/tab,-whitespace/line_length,-legal/copyright,-readability/streams)
  665. add_custom_target(style python cpplint.py ${CPPLINT_ARGS} `find ./src/ -iname "*.h" -or -iname "*.cpp" `)
  666. include(StormCPackConfig.cmake)