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.

808 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. ## Eigen
  185. ##
  186. #############################################################
  187. # Add the shipped version of Eigen to the include pathes
  188. set(EIGEN_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/resources/3rdparty/eigen-3.3-beta1")
  189. include_directories(${EIGEN_INCLUDE_DIR})
  190. #############################################################
  191. ##
  192. ## gmp
  193. ##
  194. #############################################################
  195. # GMP is optional (unless MathSAT is used, see below)
  196. find_package(GMP QUIET)
  197. #############################################################
  198. ##
  199. ## Boost
  200. ##
  201. #############################################################
  202. # Boost Option variables
  203. set(Boost_USE_STATIC_LIBS ${USE_BOOST_STATIC_LIBRARIES})
  204. set(Boost_USE_MULTITHREADED ON)
  205. set(Boost_USE_STATIC_RUNTIME OFF)
  206. find_package(Boost 1.56.0 QUIET REQUIRED)
  207. if ((NOT Boost_LIBRARY_DIRS) OR ("${Boost_LIBRARY_DIRS}" STREQUAL ""))
  208. set(Boost_LIBRARY_DIRS "${Boost_INCLUDE_DIRS}/stage/lib")
  209. endif ()
  210. link_directories(${Boost_LIBRARY_DIRS})
  211. include_directories(${Boost_INCLUDE_DIRS})
  212. list(APPEND STORM_LINK_LIBRARIES ${Boost_LIBRARIES})
  213. message(STATUS "StoRM - Using Boost ${Boost_VERSION} (lib ${Boost_LIB_VERSION})")
  214. #message(STATUS "StoRM - BOOST_INCLUDE_DIRS is ${Boost_INCLUDE_DIRS}")
  215. #message(STATUS "StoRM - BOOST_LIBRARY_DIRS is ${Boost_LIBRARY_DIRS}")
  216. #############################################################
  217. ##
  218. ## ExprTk
  219. ##
  220. #############################################################
  221. # Use the shipped version of ExprTK
  222. message (STATUS "StoRM - Including ExprTk")
  223. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/exprtk")
  224. #############################################################
  225. ##
  226. ## ModernJSON
  227. ##
  228. #############################################################
  229. #use the shipped version of modernjson
  230. message (STATUS "StoRM - Including ModernJSON")
  231. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/modernjson/src/")
  232. #############################################################
  233. ##
  234. ## Z3 (optional)
  235. ##
  236. #############################################################
  237. find_package(Z3 QUIET)
  238. # Z3 Defines
  239. set(STORM_HAVE_Z3 ${Z3_FOUND})
  240. if(Z3_FOUND)
  241. message (STATUS "StoRM - Linking with Z3")
  242. include_directories(${Z3_INCLUDE_DIRS})
  243. list(APPEND STORM_LINK_LIBRARIES ${Z3_LIBRARIES})
  244. endif(Z3_FOUND)
  245. #############################################################
  246. ##
  247. ## glpk
  248. ##
  249. #############################################################
  250. find_package(GLPK QUIET)
  251. if(GLPK_FOUND)
  252. message (STATUS "StoRM - Using system version of GLPK")
  253. else()
  254. message (STATUS "StoRM - Using shipped version of GLPK")
  255. set(GLPK_LIBRARIES ${CMAKE_BINARY_DIR}/resources/3rdparty/glpk-4.57/lib/libglpk${DYNAMIC_EXT})
  256. set(GLPK_INCLUDE_DIR ${CMAKE_BINARY_DIR}/resources/3rdparty/glpk-4.57/include)
  257. set(GLPK_VERSION_STRING 4.57)
  258. add_dependencies(resources glpk)
  259. endif()
  260. # Since there is a shipped version, always use GLPK
  261. set(STORM_HAVE_GLPK ON)
  262. message (STATUS "StoRM - Linking with glpk ${GLPK_VERSION_STRING}")
  263. include_directories(${GLPK_INCLUDE_DIR})
  264. list(APPEND STORM_LINK_LIBRARIES ${GLPK_LIBRARIES})
  265. #############################################################
  266. ##
  267. ## Gurobi (optional)
  268. ##
  269. #############################################################
  270. if (STORM_USE_GUROBI)
  271. find_package(Gurobi QUIET REQUIRED)
  272. set(STORM_HAVE_GUROBI ${GUROBI_FOUND})
  273. if (GUROBI_FOUND)
  274. message (STATUS "StoRM - Linking with Gurobi")
  275. include_directories(${GUROBI_INCLUDE_DIRS})
  276. list(APPEND STORM_LINK_LIBRARIES ${GUROBI_LIBRARY})
  277. #link_directories("${GUROBI_ROOT}/lib")
  278. else()
  279. #message(FATAL_ERROR "StoRM - Gurobi was requested, but not found!")
  280. endif()
  281. else()
  282. set(STORM_HAVE_GUROBI OFF)
  283. endif()
  284. #############################################################
  285. ##
  286. ## CUDD
  287. ##
  288. #############################################################
  289. # Do not use system CUDD, StoRM has a modified version
  290. set(CUDD_INCLUDE_DIR ${CMAKE_BINARY_DIR}/resources/3rdparty/cudd-3.0.0/include)
  291. set(CUDD_SHARED_LIBRARY ${CMAKE_BINARY_DIR}/resources/3rdparty/cudd-3.0.0/lib/libcudd${DYNAMIC_EXT})
  292. set(CUDD_STATIC_LIBRARY ${CMAKE_BINARY_DIR}/resources/3rdparty/cudd-3.0.0/lib/libcudd${STATIC_EXT})
  293. set(CUDD_VERSION_STRING 3.0.0)
  294. list(APPEND STORM_LINK_LIBRARIES ${CUDD_SHARED_LIBRARY})
  295. add_dependencies(resources cudd3)
  296. message(STATUS "StoRM - Linking with CUDD ${CUDD_VERSION_STRING}")
  297. #message("StoRM - CUDD include dir: ${CUDD_INCLUDE_DIR}")
  298. include_directories(${CUDD_INCLUDE_DIR})
  299. #############################################################
  300. ##
  301. ## CLN
  302. ##
  303. #############################################################
  304. find_package(CLN QUIET)
  305. if(CLN_FOUND)
  306. set(STORM_HAVE_CLN ON)
  307. message(STATUS "StoRM - Linking with CLN ${CLN_VERSION_STRING}")
  308. include_directories("${CLN_INCLUDE_DIR}")
  309. list(APPEND STORM_LINK_LIBRARIES ${CLN_LIBRARIES})
  310. else()
  311. set(STORM_HAVE_CLN OFF)
  312. if(NOT GMP_FOUND)
  313. message(FATAL_ERROR "StoRM - Neither CLN nor GMP found")
  314. endif()
  315. endif()
  316. #############################################################
  317. ##
  318. ## carl
  319. ##
  320. #############################################################
  321. set(STORM_HAVE_CARL OFF)
  322. if(USE_CARL)
  323. find_package(carl QUIET REQUIRED)
  324. if(carl_FOUND)
  325. set(STORM_HAVE_CARL ON)
  326. message(STATUS "StoRM - Linking with carl ${carl_VERSION_STRING}")
  327. include_directories("${carl_INCLUDE_DIR}")
  328. list(APPEND STORM_LINK_LIBRARIES ${carl_LIBRARIES})
  329. else()
  330. message(FATAL_ERROR "StoRM - CARL was requested but not found")
  331. endif()
  332. endif()
  333. #############################################################
  334. ##
  335. ## SMT-RAT
  336. ##
  337. #############################################################
  338. # No find routine yet
  339. #find_package(smtrat QUIET)
  340. # Not yet supported
  341. set(smtrat_FOUND OFF)
  342. set(STORM_HAVE_SMTRAT OFF)
  343. if(smtrat_FOUND)
  344. set(STORM_HAVE_SMTRAT ON)
  345. message(STATUS "StoRM - Linking with smtrat.")
  346. include_directories("${smtrat_INCLUDE_DIR}")
  347. list(APPEND STORM_LINK_LIBRARIES ${smtrat_LIBRARIES})
  348. endif()
  349. #############################################################
  350. ##
  351. ## GiNaC
  352. ##
  353. #############################################################
  354. find_package(GiNaC QUIET)
  355. if(GINAC_FOUND)
  356. set(STORM_HAVE_GINAC ON)
  357. message(STATUS "StoRM - Linking with GiNaC ${GINAC_VERSION_STRING}")
  358. # Right now only link with GiNaC for carl
  359. #include_directories("${GINAC_INCLUDE_DIR}")
  360. list(APPEND STORM_LINK_LIBRARIES ${GINAC_LIBRARIES})
  361. else()
  362. set(STORM_HAVE_GINAC OFF)
  363. #TODO: Check if CARL actually requires the use of GiNaC
  364. endif()
  365. #############################################################
  366. ##
  367. ## MathSAT (optional)
  368. ##
  369. #############################################################
  370. if ("${MSAT_ROOT}" STREQUAL "")
  371. set(ENABLE_MSAT OFF)
  372. else()
  373. set(ENABLE_MSAT ON)
  374. endif()
  375. # MathSAT Defines
  376. set(STORM_HAVE_MSAT ${ENABLE_MSAT})
  377. if (ENABLE_MSAT)
  378. message (STATUS "StoRM - Linking with MathSAT")
  379. link_directories("${MSAT_ROOT}/lib")
  380. include_directories("${MSAT_ROOT}/include")
  381. list(APPEND STORM_LINK_LIBRARIES "mathsat")
  382. if(GMP_FOUND)
  383. include_directories("${GMP_INCLUDE_DIR}")
  384. list(APPEND STORM_LINK_LIBRARIES "gmp")
  385. elseif(MPIR_FOUND)
  386. include_directories("${GMP_INCLUDE_DIR}")
  387. list(APPEND STORM_LINK_LIBRARIES "mpir" "mpirxx")
  388. else(GMP_FOUND)
  389. message(FATAL_ERROR "GMP is required for MathSAT, but was not found!")
  390. endif(GMP_FOUND)
  391. endif(ENABLE_MSAT)
  392. #############################################################
  393. ##
  394. ## Xerces
  395. ##
  396. #############################################################
  397. if(USE_XERCES)
  398. find_package(Xerces QUIET REQUIRED)
  399. if(XERCES_FOUND)
  400. message(STATUS "StoRM - Use system version of xerces")
  401. else()
  402. message(STATUS "StoRM - Use shipped version of xerces")
  403. set(XERCES_ROOT ${CMAKE_BINARY_DIR}/resources/3rdparty/xercesc-3.1.2)
  404. set(XERCESC_INCLUDE ${XERCES_ROOT}/include)
  405. set(XERCES_LIBRARY_PATH ${XERCES_ROOT}/lib)
  406. set(XERCESC_LIBRARIES ${XERCES_LIBRARY_PATH}/libxerces-c.a)
  407. add_dependencies(resources xercesc)
  408. endif()
  409. message (STATUS "StoRM - Linking with xercesc")
  410. set(STORM_HAVE_XERCES ON)
  411. include_directories(${XERCESC_INCLUDE})
  412. list(APPEND STORM_LINK_LIBRARIES ${XERCESC_LIBRARIES})
  413. endif(USE_XERCES)
  414. #############################################################
  415. ##
  416. ## Sylvan
  417. ##
  418. #############################################################
  419. message(STATUS "StoRM - Using shipped version of sylvan")
  420. message(STATUS "StoRM - Linking with sylvan")
  421. include_directories("${Sylvan_INCLUDE_DIR}")
  422. list(APPEND STORM_LINK_LIBRARIES ${Sylvan_LIBRARY})
  423. add_dependencies(resources sylvan)
  424. if(${OPERATING_SYSTEM} MATCHES "Linux")
  425. find_package(Hwloc QUIET REQUIRED)
  426. if(Hwloc_FOUND)
  427. message(STATUS "StoRM - Linking with hwloc ${Hwloc_VERSION}")
  428. list(APPEND STORM_LINK_LIBRARIES ${Hwloc_LIBRARIES})
  429. else()
  430. message(FATAL_ERROR "HWLOC is required but was not found.")
  431. endif()
  432. endif()
  433. #############################################################
  434. ##
  435. ## Google Test gtest
  436. ##
  437. #############################################################
  438. add_dependencies(test-resources googletest)
  439. list(APPEND STORM_TEST_LINK_LIBRARIES ${GTEST_LIBRARIES})
  440. #############################################################
  441. ##
  442. ## Intel Threading Building Blocks (optional)
  443. ##
  444. #############################################################
  445. set(STORM_HAVE_INTELTBB OFF)
  446. if (STORM_USE_INTELTBB)
  447. # Point to shipped TBB directory
  448. set(TBB_INSTALL_DIR "${PROJECT_SOURCE_DIR}/resources/3rdparty/tbb42_20140122_merged-win-lin-mac")
  449. find_package(TBB QUIET REQUIRED)
  450. if (TBB_FOUND)
  451. message(STATUS "StoRM - Found Intel TBB with interface version ${TBB_INTERFACE_VERSION}.")
  452. message(STATUS "StoRM - Linking with Intel TBB in ${TBB_LIBRARY_DIRS}.")
  453. set(STORM_HAVE_INTELTBB ON)
  454. link_directories(${TBB_LIBRARY_DIRS})
  455. include_directories(${TBB_INCLUDE_DIRS})
  456. list(APPEND STORM_LINK_LIBRARIES tbb tbbmalloc)
  457. else(TBB_FOUND)
  458. message(FATAL_ERROR "StoRM - TBB was requested, but not found!")
  459. endif(TBB_FOUND)
  460. endif(STORM_USE_INTELTBB)
  461. #############################################################
  462. ##
  463. ## Threads
  464. ##
  465. #############################################################
  466. find_package(Threads QUIET REQUIRED)
  467. if (NOT Threads_FOUND)
  468. message(FATAL_ERROR "StoRM - Threads was requested, but not found!")
  469. endif()
  470. include_directories(${THREADS_INCLUDE_DIRS})
  471. list(APPEND STORM_LINK_LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
  472. if (STORM_USE_COTIRE)
  473. target_link_libraries(storm_unity ${CMAKE_THREAD_LIBS_INIT})
  474. endif(STORM_USE_COTIRE)
  475. if (MSVC)
  476. # Add the DebugHelper DLL
  477. set(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} Dbghelp.lib")
  478. target_link_libraries(storm "Dbghelp.lib")
  479. endif(MSVC)
  480. #############################################################
  481. ##
  482. ## CUDA Library generation
  483. ##
  484. #############################################################
  485. if ("${CUDA_ROOT}" STREQUAL "")
  486. set(ENABLE_CUDA OFF)
  487. else()
  488. set(ENABLE_CUDA ON)
  489. endif()
  490. # CUDA Defines
  491. if (ENABLE_CUDA)
  492. set(STORM_CPP_CUDA_DEF "define")
  493. else()
  494. set(STORM_CPP_CUDA_DEF "undef")
  495. endif()
  496. # CUDA Defines
  497. set(STORM_CPP_CUDAFORSTORM_DEF "undef")
  498. if(ENABLE_CUDA)
  499. # Test for type alignment
  500. try_run(STORM_CUDA_RUN_RESULT_TYPEALIGNMENT STORM_CUDA_COMPILE_RESULT_TYPEALIGNMENT
  501. ${PROJECT_BINARY_DIR} "${PROJECT_SOURCE_DIR}/cuda/CMakeAlignmentCheck.cpp"
  502. COMPILE_OUTPUT_VARIABLE OUTPUT_TEST_VAR
  503. )
  504. if(NOT STORM_CUDA_COMPILE_RESULT_TYPEALIGNMENT)
  505. 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}")
  506. elseif(STORM_CUDA_RUN_RESULT_TYPEALIGNMENT EQUAL 0)
  507. message(STATUS "StoRM (CudaPlugin) - Result of Type Alignment Check: OK.")
  508. else()
  509. message(FATAL_ERROR "StoRM (CudaPlugin) - Result of Type Alignment Check: FAILED (Code ${STORM_CUDA_RUN_RESULT_TYPEALIGNMENT})")
  510. endif()
  511. # Test for Float 64bit Alignment
  512. try_run(STORM_CUDA_RUN_RESULT_FLOATALIGNMENT STORM_CUDA_COMPILE_RESULT_FLOATALIGNMENT
  513. ${PROJECT_BINARY_DIR} "${PROJECT_SOURCE_DIR}/cuda/CMakeFloatAlignmentCheck.cpp"
  514. COMPILE_OUTPUT_VARIABLE OUTPUT_TEST_VAR
  515. )
  516. if(NOT STORM_CUDA_COMPILE_RESULT_FLOATALIGNMENT)
  517. 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}")
  518. elseif(STORM_CUDA_RUN_RESULT_FLOATALIGNMENT EQUAL 2)
  519. message(STATUS "StoRM (CudaPlugin) - Result of Float Type Alignment Check: 64bit alignment active.")
  520. set(STORM_CUDAPLUGIN_FLOAT_64BIT_ALIGN_DEF "define")
  521. elseif(STORM_CUDA_RUN_RESULT_FLOATALIGNMENT EQUAL 3)
  522. message(STATUS "StoRM (CudaPlugin) - Result of Float Type Alignment Check: 64bit alignment disabled.")
  523. set(STORM_CUDAPLUGIN_FLOAT_64BIT_ALIGN_DEF "undef")
  524. else()
  525. message(FATAL_ERROR "StoRM (CudaPlugin) - Result of Float Type Alignment Check: FAILED (Code ${STORM_CUDA_RUN_RESULT_FLOATALIGNMENT})")
  526. endif()
  527. #
  528. # Make a version file containing the current version from git.
  529. #
  530. include(GetGitRevisionDescription)
  531. git_describe_checkout(STORM_GIT_VERSION_STRING)
  532. # Parse the git Tag into variables
  533. string(REGEX REPLACE "^([0-9]+)\\..*" "\\1" STORM_CUDAPLUGIN_VERSION_MAJOR "${STORM_GIT_VERSION_STRING}")
  534. string(REGEX REPLACE "^[0-9]+\\.([0-9]+).*" "\\1" STORM_CUDAPLUGIN_VERSION_MINOR "${STORM_GIT_VERSION_STRING}")
  535. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" STORM_CUDAPLUGIN_VERSION_PATCH "${STORM_GIT_VERSION_STRING}")
  536. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-([0-9]+)\\-.*" "\\1" STORM_CUDAPLUGIN_VERSION_COMMITS_AHEAD "${STORM_GIT_VERSION_STRING}")
  537. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-([a-z0-9]+).*" "\\1" STORM_CUDAPLUGIN_VERSION_HASH "${STORM_GIT_VERSION_STRING}")
  538. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-[a-z0-9]+\\-(.*)" "\\1" STORM_CUDAPLUGIN_VERSION_APPENDIX "${STORM_GIT_VERSION_STRING}")
  539. if ("${STORM_CUDAPLUGIN_VERSION_APPENDIX}" MATCHES "^.*dirty.*$")
  540. set(STORM_CUDAPLUGIN_VERSION_DIRTY 1)
  541. else()
  542. set(STORM_CUDAPLUGIN_VERSION_DIRTY 0)
  543. endif()
  544. 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})")
  545. # Configure a header file to pass some of the CMake settings to the source code
  546. configure_file (
  547. "${PROJECT_SOURCE_DIR}/cuda/storm-cudaplugin-config.h.in"
  548. "${PROJECT_BINARY_DIR}/include/storm-cudaplugin-config.h"
  549. )
  550. #create library
  551. find_package(CUDA REQUIRED)
  552. set(CUSP_INCLUDE_DIRS "${PROJECT_SOURCE_DIR}/resources/3rdparty/cusplibrary")
  553. find_package(Cusp REQUIRED)
  554. find_package(Thrust REQUIRED)
  555. set(STORM_CUDA_LIB_NAME "storm-cuda")
  556. file(GLOB_RECURSE STORM_CUDA_KERNEL_FILES ${PROJECT_SOURCE_DIR}/cuda/kernels/*.cu)
  557. file(GLOB_RECURSE STORM_CUDA_HEADER_FILES ${PROJECT_SOURCE_DIR}/cuda/kernels/*.h)
  558. source_group(kernels FILES ${STORM_CUDA_KERNEL_FILES} ${STORM_CUDA_HEADER_FILES})
  559. include_directories(${PROJECT_SOURCE_DIR}/cuda/kernels/)
  560. #set(CUDA_PROPAGATE_HOST_FLAGS OFF)
  561. set(CUDA_NVCC_FLAGS "-arch=sm_30")
  562. #############################################################
  563. ##
  564. ## CUSP
  565. ##
  566. #############################################################
  567. if(CUSP_FOUND)
  568. include_directories(${CUSP_INCLUDE_DIR})
  569. cuda_include_directories(${CUSP_INCLUDE_DIR})
  570. message(STATUS "StoRM (CudaPlugin) - Found CUSP Version ${CUSP_VERSION} in location ${CUSP_INCLUDE_DIR}")
  571. else()
  572. message(FATAL_ERROR "StoRM (CudaPlugin) - Could not find CUSP!")
  573. endif()
  574. #############################################################
  575. ##
  576. ## Thrust
  577. ##
  578. #############################################################
  579. if(THRUST_FOUND)
  580. include_directories(${THRUST_INCLUDE_DIR})
  581. cuda_include_directories(${THRUST_INCLUDE_DIR})
  582. message(STATUS "StoRM (CudaPlugin) - Found Thrust Version ${THRUST_VERSION} in location ${THRUST_INCLUDE_DIR}")
  583. else()
  584. message(FATAL_ERROR "StoRM (CudaPlugin) - Could not find Thrust! Check your CUDA installation.")
  585. endif()
  586. include_directories(${CUDA_INCLUDE_DIRS})
  587. include_directories(${ADDITIONAL_INCLUDE_DIRS})
  588. cuda_add_library(${STORM_CUDA_LIB_NAME}
  589. ${STORM_CUDA_KERNEL_FILES} ${STORM_CUDA_HEADER_FILES}
  590. )
  591. message (STATUS "StoRM - Linking with CUDA")
  592. list(APPEND STORM_LINK_LIBRARIES ${STORM_CUDA_LIB_NAME})
  593. include_directories("${PROJECT_SOURCE_DIR}/cuda/kernels/")
  594. endif()
  595. #############################################################
  596. ##
  597. ## Cotire
  598. ##
  599. #############################################################
  600. message (STATUS "StoRM - Using Cotire: ${STORM_USE_COTIRE}")
  601. if (STORM_USE_COTIRE)
  602. # Include Cotire for PCH Generation
  603. set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/resources/cmake")
  604. include(cotire)
  605. cotire(storm)
  606. target_link_libraries(storm_unity ${Boost_LIBRARIES})
  607. #cotire(storm-functional-tests)
  608. #cotire(storm-performance-tests)
  609. endif()
  610. #############################################################
  611. ##
  612. ## libc++abi
  613. ##
  614. #############################################################
  615. # Link against libc++abi if requested. May be needed to build on Linux systems using clang.
  616. if (LINK_LIBCXXABI)
  617. message (STATUS "StoRM - Linking against libc++abi.")
  618. target_link_libraries(storm "c++abi")
  619. endif(LINK_LIBCXXABI)
  620. #############################################################
  621. ##
  622. ## Doxygen
  623. ##
  624. #############################################################
  625. find_package(Doxygen REQUIRED)
  626. # Add a target to generate API documentation with Doxygen
  627. if(DOXYGEN_FOUND)
  628. set(CMAKE_DOXYGEN_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/doc")
  629. string(REGEX REPLACE ";" " " CMAKE_DOXYGEN_INPUT_LIST "${PROJECT_SOURCE_DIR}/src")
  630. configure_file("${CMAKE_CURRENT_SOURCE_DIR}/doc/Doxyfile.in" "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" @ONLY)
  631. add_custom_target(doc ${DOXYGEN_EXECUTABLE} "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" COMMENT "Generating API documentation with Doxygen" VERBATIM)
  632. endif(DOXYGEN_FOUND)
  633. #############################################################
  634. ##
  635. ## CMake-generated Config File for StoRM
  636. ##
  637. #############################################################
  638. #
  639. # Make a version file containing the current version from git.
  640. #
  641. include(GetGitRevisionDescription)
  642. git_describe_checkout(STORM_GIT_VERSION_STRING)
  643. message(STATUS "STORM_GIT_VERSION_STRING: ${STORM_GIT_VERSION_STRING}")
  644. # Parse the git Tag into variables
  645. string(REGEX REPLACE "^([0-9]+)\\..*" "\\1" STORM_CPP_VERSION_MAJOR "${STORM_GIT_VERSION_STRING}")
  646. string(REGEX REPLACE "^[0-9]+\\.([0-9]+).*" "\\1" STORM_CPP_VERSION_MINOR "${STORM_GIT_VERSION_STRING}")
  647. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" STORM_CPP_VERSION_PATCH "${STORM_GIT_VERSION_STRING}")
  648. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-([0-9]+)\\-.*" "\\1" STORM_CPP_VERSION_COMMITS_AHEAD "${STORM_GIT_VERSION_STRING}")
  649. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-([a-z0-9]+).*" "\\1" STORM_CPP_VERSION_HASH "${STORM_GIT_VERSION_STRING}")
  650. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-[a-z0-9]+\\-(.*)" "\\1" STORM_CPP_VERSION_APPENDIX "${STORM_GIT_VERSION_STRING}")
  651. if ("${STORM_CPP_VERSION_APPENDIX}" MATCHES "^.*dirty.*$")
  652. set(STORM_CPP_VERSION_DIRTY 1)
  653. else()
  654. set(STORM_CPP_VERSION_DIRTY 0)
  655. endif()
  656. 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})")
  657. # Configure a header file to pass some of the CMake settings to the source code
  658. configure_file (
  659. "${PROJECT_SOURCE_DIR}/storm-config.h.in"
  660. "${PROJECT_BINARY_DIR}/include/storm-config.h"
  661. )
  662. # Configure a header file to pass the storm version to the source code
  663. configure_file (
  664. "${PROJECT_SOURCE_DIR}/storm-version.cpp.in"
  665. "${PROJECT_SOURCE_DIR}/src/utility/storm-version.cpp"
  666. )
  667. set(STORM_GENERATED_SOURCES "${PROJECT_BINARY_DIR}/src/utility/storm-version.cpp")
  668. # Add the binary dir include directory for storm-config.h
  669. include_directories("${PROJECT_BINARY_DIR}/include")
  670. add_subdirectory(src)
  671. add_subdirectory(test)
  672. #############################################################
  673. ##
  674. ## memcheck targets
  675. ##
  676. #############################################################
  677. 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)
  678. 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)
  679. 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)
  680. set(CPPLINT_ARGS --filter=-whitespace/tab,-whitespace/line_length,-legal/copyright,-readability/streams)
  681. add_custom_target(style python cpplint.py ${CPPLINT_ARGS} `find ./src/ -iname "*.h" -or -iname "*.cpp" `)
  682. include(StormCPackConfig.cmake)