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.

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