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.

526 lines
21 KiB

  1. cmake_minimum_required (VERSION 3.2)
  2. cmake_policy(VERSION 3.2)
  3. # When searching for packages, we would like to first search in prefixes specified by <PackageName>_ROOT.
  4. # However, this behavior is only supported since CMake 3.12.
  5. if(POLICY CMP0074)
  6. cmake_policy(SET CMP0074 NEW)
  7. endif()
  8. # Set project name
  9. project (storm CXX C)
  10. # Add base folder for better inclusion paths
  11. include_directories("${PROJECT_SOURCE_DIR}/src")
  12. include_directories("${PROJECT_SOURCE_DIR}/src/storm")
  13. # Add the resources/cmake folder to Module Search Path for FindTBB.cmake
  14. set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/resources/cmake/find_modules" "${PROJECT_SOURCE_DIR}/resources/cmake/macros")
  15. include(ExternalProject)
  16. include(RegisterSourceGroup)
  17. include(imported)
  18. include(CheckCXXSourceCompiles)
  19. include(CheckCSourceCompiles)
  20. #############################################################
  21. ##
  22. ## CMake options of Storm
  23. ##
  24. #############################################################
  25. option(STORM_DEVELOPER "Sets whether the development mode is used." OFF)
  26. option(STORM_ALLWARNINGS "Compile with even more warnings" OFF)
  27. option(STORM_USE_LTO "Sets whether link-time optimizations are enabled." ON)
  28. MARK_AS_ADVANCED(STORM_USE_LTO)
  29. option(STORM_USE_THIN_LTO "Sets whether thin link-time optimizations are enabled (faster compile times than normal LTO)." OFF)
  30. MARK_AS_ADVANCED(STORM_USE_THIN_LTO)
  31. option(STORM_PORTABLE "Sets whether a build needs to be portable." OFF)
  32. MARK_AS_ADVANCED(STORM_PORTABLE)
  33. # Force POPCNT is helpful for portable code targetting platforms with SSE4.2 operation support.
  34. option(STORM_FORCE_POPCNT "Sets whether the popcnt instruction is forced to be used (advanced)." OFF)
  35. MARK_AS_ADVANCED(STORM_FORCE_POPCNT)
  36. option(USE_BOOST_STATIC_LIBRARIES "Sets whether the Boost libraries should be linked statically." OFF)
  37. option(STORM_USE_INTELTBB "Sets whether the Intel TBB libraries should be used." OFF)
  38. option(STORM_USE_GUROBI "Sets whether Gurobi should be used." OFF)
  39. set(STORM_CARL_DIR_HINT "" CACHE STRING "A hint where the preferred CArL version can be found. If CArL cannot be found there, it is searched in the OS's default paths.")
  40. option(STORM_FORCE_SHIPPED_CARL "Sets whether the shipped version of carl is to be used no matter whether carl is found or not." OFF)
  41. MARK_AS_ADVANCED(STORM_FORCE_SHIPPED_CARL)
  42. option(USE_SMTRAT "Sets whether SMT-RAT should be included." OFF)
  43. mark_as_advanced(USE_SMTRAT)
  44. option(USE_HYPRO "Sets whether HyPro should be included." OFF)
  45. mark_as_advanced(USE_HYPRO)
  46. option(XML_SUPPORT "Sets whether xml based format parsing should be included." ON)
  47. option(FORCE_COLOR "Force color output" OFF)
  48. mark_as_advanced(FORCE_COLOR)
  49. option(STORM_COMPILE_WITH_CCACHE "Compile using CCache [if found]" ON)
  50. mark_as_advanced(STORM_COMPILE_WITH_CCACHE)
  51. option(STORM_LOG_DISABLE_DEBUG "Disable log and trace message support" OFF)
  52. option(STORM_USE_CLN_EA "Sets whether CLN instead of GMP numbers should be used for exact arithmetic." OFF)
  53. export_option(STORM_USE_CLN_EA)
  54. option(STORM_USE_CLN_RF "Sets whether CLN instead of GMP numbers should be used for rational functions." ON)
  55. export_option(STORM_USE_CLN_RF)
  56. option(BUILD_SHARED_LIBS "Build the Storm library dynamically" OFF)
  57. option(STORM_DEBUG_CUDD "Build CUDD in debug mode." OFF)
  58. MARK_AS_ADVANCED(STORM_DEBUG_CUDD)
  59. option(STORM_EXCLUDE_TESTS_FROM_ALL "If set, tests will not be compiled by default" OFF )
  60. export_option(STORM_EXCLUDE_TESTS_FROM_ALL)
  61. MARK_AS_ADVANCED(STORM_EXCLUDE_TESTS_FROM_ALL)
  62. set(BOOST_ROOT "" CACHE STRING "A hint to the root directory of Boost (optional).")
  63. set(GUROBI_ROOT "" CACHE STRING "A hint to the root directory of Gurobi (optional).")
  64. set(Z3_ROOT "" CACHE STRING "A hint to the root directory of Z3 (optional).")
  65. set(CUDA_ROOT "" CACHE STRING "The hint to the root directory of CUDA (optional).")
  66. set(MSAT_ROOT "" CACHE STRING "The hint to the root directory of MathSAT (optional).")
  67. option(STORM_LOAD_QVBS "Sets whether the Quantitative Verification Benchmark Set (QVBS) should be downloaded." OFF)
  68. set(STORM_QVBS_ROOT "" CACHE STRING "The root directory of the Quantitative Verification Benchmark Set (QVBS) in case it should not be downloaded (optional).")
  69. MARK_AS_ADVANCED(STORM_QVBS_ROOT)
  70. set(ADDITIONAL_INCLUDE_DIRS "" CACHE STRING "Additional directories added to the include directories.")
  71. set(ADDITIONAL_LINK_DIRS "" CACHE STRING "Additional directories added to the link directories.")
  72. set(USE_XERCESC ${XML_SUPPORT})
  73. mark_as_advanced(USE_XERCESC)
  74. # Set some CMAKE Variables as advanced
  75. mark_as_advanced(CMAKE_OSX_ARCHITECTURES)
  76. mark_as_advanced(CMAKE_OSX_SYSROOT)
  77. mark_as_advanced(CMAKE_OSX_DEPLOYMENT_TARGET)
  78. # Offer the user the choice of overriding the installation directories
  79. set(INCLUDE_INSTALL_DIR include/ CACHE PATH "Installation directory for header files" )
  80. set(LIB_INSTALL_DIR lib/ CACHE PATH "Installation directory for libraries")
  81. #set(SYSCONFIG_INSTALL_DIR etc/carl/ CACHE PATH "Installation for system configuration files)
  82. set(BIN_INSTALL_DIR lib/ CACHE PATH "Installation directory for executables")
  83. # Install dir for cmake files (info for other libraries that include Storm)
  84. set(DEF_INSTALL_CMAKE_DIR "lib/CMake/storm")
  85. set(CMAKE_INSTALL_DIR ${DEF_INSTALL_CMAKE_DIR} CACHE PATH "Installation directory for CMake files")
  86. # Add CMake install prefix
  87. foreach(p LIB BIN INCLUDE CMAKE)
  88. set(var ${p}_INSTALL_DIR)
  89. if(NOT IS_ABSOLUTE "${${var}}")
  90. set(${var} "${CMAKE_INSTALL_PREFIX}/${${var}}")
  91. endif()
  92. endforeach()
  93. message(STATUS "Storm - CMake install dir: ${CMAKE_INSTALL_DIR}")
  94. # If the STORM_DEVELOPER option was turned on, by default we target a debug version, otherwise a release version.
  95. if (STORM_DEVELOPER)
  96. if (NOT CMAKE_BUILD_TYPE)
  97. set(CMAKE_BUILD_TYPE "DEBUG")
  98. endif()
  99. add_definitions(-DSTORM_DEV)
  100. else()
  101. set(STORM_LOG_DISABLE_DEBUG ON)
  102. if (NOT CMAKE_BUILD_TYPE)
  103. set(CMAKE_BUILD_TYPE "RELEASE")
  104. endif()
  105. endif()
  106. message(STATUS "Storm - Building ${CMAKE_BUILD_TYPE} version.")
  107. if(STORM_COMPILE_WITH_CCACHE)
  108. find_program(CCACHE_FOUND ccache)
  109. mark_as_advanced(CCACHE_FOUND)
  110. if(CCACHE_FOUND)
  111. message(STATUS "Storm - Using ccache")
  112. set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
  113. set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
  114. else()
  115. message(STATUS "Storm - Could not find ccache.")
  116. endif()
  117. else()
  118. message(STATUS "Storm - Disabled use of ccache.")
  119. endif()
  120. # Directory for test resources.
  121. set(STORM_TEST_RESOURCES_DIR "${PROJECT_SOURCE_DIR}/resources/examples/testfiles")
  122. # Auto-detect operating system.
  123. set(MACOSX 0)
  124. set(LINUX 0)
  125. if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
  126. # Mac OS
  127. set(OPERATING_SYSTEM "Mac OS")
  128. set(MACOSX 1)
  129. elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
  130. # Linux
  131. set(OPERATING_SYSTEM "Linux")
  132. set(LINUX 1)
  133. elseif(WIN32)
  134. # Assuming Windows.
  135. set(OPERATING_SYSTEM "Windows")
  136. else()
  137. message(WARNING "We are unsure about your operating system.")
  138. set(OPERATING_SYSTEM "Linux")
  139. set(LINUX 1)
  140. ENDIF()
  141. message(STATUS "Storm - Detected operating system ${OPERATING_SYSTEM}.")
  142. set(DYNAMIC_EXT ".so")
  143. set(STATIC_EXT ".a")
  144. set(LIB_PREFIX "lib")
  145. if(MACOSX)
  146. set(DYNAMIC_EXT ".dylib")
  147. set(STATIC_EXT ".a")
  148. set(LIB_PREFIX "lib")
  149. elseif (WIN32)
  150. set(DYNAMIC_EXT ".dll")
  151. set(STATIC_EXT ".lib")
  152. set(LIB_PREFIX "")
  153. endif()
  154. message(STATUS "Storm - Assuming extension for shared libraries: ${DYNAMIC_EXT}")
  155. message(STATUS "Storm - Assuming extension for static libraries: ${STATIC_EXT}")
  156. if(BUILD_SHARED_LIBS)
  157. set(LIB_EXT ${DYNAMIC_EXT})
  158. message(STATUS "Storm - Build dynamic libraries.")
  159. else()
  160. set(LIB_EXT ${STATIC_EXT})
  161. message(STATUS "Storm - Build static libraries.")
  162. endif()
  163. #############################################################
  164. ##
  165. ## Compiler detection and initial configuration
  166. ##
  167. #############################################################
  168. if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
  169. # using Clang
  170. if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.2)
  171. message(FATAL_ERROR "Clang version must be at least 3.2.")
  172. endif()
  173. set(STORM_COMPILER_CLANG ON)
  174. set(CLANG ON)
  175. set(STORM_COMPILER_ID "clang")
  176. elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "AppleClang")
  177. # using AppleClang
  178. if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.3)
  179. message(FATAL_ERROR "AppleClang version must be at least 7.3.")
  180. elseif ((CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL 11.0.0) OR (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 11.0.0))
  181. message(WARNING "Disabling stack checks for AppleClang version 11.0.0 or higher.")
  182. # Stack checks are known to produce errors with the following Clang versions:
  183. # 11.0.0: Runtime errors (stack_not_16_byte_aligned_error) when invoking storm in release mode
  184. # 11.0.3 and 12.0.0: Catching exceptions thrown within PRISM parser does not work (The exception just falls through)
  185. set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -fno-stack-check")
  186. endif()
  187. set(STORM_COMPILER_APPLECLANG ON)
  188. set(CLANG ON)
  189. set(STORM_COMPILER_ID "AppleClang")
  190. set(CMAKE_MACOSX_RPATH ON)
  191. elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
  192. set(GCC ON)
  193. # using GCC
  194. if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)
  195. message(FATAL_ERROR "gcc version must be at least 5.0.")
  196. endif()
  197. set(STORM_COMPILER_GCC ON)
  198. set(STORM_COMPILER_ID "gcc")
  199. elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel")
  200. message(FATAL_ERROR "Intel compiler is currently not supported.")
  201. elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
  202. message(FATAL_ERROR "Visual Studio compiler is currently not supported.")
  203. endif()
  204. set(STORM_COMPILER_VERSION ${CMAKE_CXX_COMPILER_VERSION})
  205. if(CCACHE_FOUND)
  206. set(STORM_COMPILER_ID "${STORM_COMPILER_ID} (ccache)")
  207. endif()
  208. #############################################################
  209. ##
  210. ## Compiler independent settings
  211. ##
  212. #############################################################
  213. if (STORM_FORCE_POPCNT)
  214. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt")
  215. endif()
  216. # TODO: remove forcing the old version of optional as soon as the related Spirit bug is fixed:
  217. # https://svn.boost.org/trac/boost/ticket/12349
  218. # Fix thanks to: https://github.com/freeorion/freeorion/issues/777
  219. add_definitions(-DBOOST_RESULT_OF_USE_DECLTYPE -DBOOST_OPTIONAL_CONFIG_USE_OLD_IMPLEMENTATION_OF_OPTIONAL)
  220. #############################################################
  221. ##
  222. ## Compiler specific settings
  223. ##
  224. #############################################################
  225. if (STORM_COMPILER_CLANG OR STORM_COMPILER_APPLECLANG)
  226. if(FORCE_COLOR)
  227. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fcolor-diagnostics")
  228. endif()
  229. if (LINUX)
  230. set(CLANG_STDLIB libstdc++)
  231. else()
  232. set(CLANG_STDLIB libc++)
  233. endif()
  234. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -stdlib=${CLANG_STDLIB} -ftemplate-depth=1024")
  235. set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}")
  236. if(LINUX)
  237. set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -rdynamic")
  238. set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -rdynamic")
  239. elseif(MACOSX)
  240. set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-export_dynamic")
  241. set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-export_dynamic")
  242. endif()
  243. elseif (STORM_COMPILER_GCC)
  244. if(FORCE_COLOR)
  245. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fdiagnostics-color=always")
  246. endif()
  247. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14")
  248. set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -fprefetch-loop-arrays")
  249. set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -rdynamic")
  250. set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -rdynamic")
  251. endif ()
  252. if (STORM_USE_THIN_LTO)
  253. if (STORM_COMPILER_CLANG OR STORM_COMPILER_APPLECLANG)
  254. set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto=thin")
  255. message(STATUS "Storm - Enabling link-time optimizations using ThinLTO.")
  256. else()
  257. message(FATAL_ERROR "Storm - ThinLTO only supported for Clang. Use regular LTO instead.")
  258. endif()
  259. elseif (STORM_USE_LTO)
  260. set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto")
  261. # Fix for problems that occurred when using LTO on gcc. This should be removed when it
  262. # is not needed anymore as it makes the already long link-step potentially longer.
  263. if (STORM_COMPILER_GCC)
  264. set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto-partition=none")
  265. endif()
  266. message(STATUS "Storm - Enabling link-time optimizations.")
  267. else()
  268. message(STATUS "Storm - Disabling link-time optimizations.")
  269. endif()
  270. # In release mode, we turn on even more optimizations if we do not have to provide a portable binary.
  271. if (NOT STORM_PORTABLE)
  272. set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -march=native")
  273. endif ()
  274. if (STORM_DEVELOPER)
  275. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic")
  276. if (STORM_ALLWARNINGS)
  277. if (CLANG)
  278. # Enable strictly every warning and then disable selected ones.
  279. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Weverything")
  280. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-c++98-compat -Wno-c++98-compat-pedantic")
  281. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-old-style-cast")
  282. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-reserved-id-macro")
  283. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-newline-eof")
  284. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-documentation")
  285. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-weak-vtables")
  286. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-global-constructors")
  287. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-exit-time-destructors")
  288. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-switch-enum")
  289. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-covered-switch-default")
  290. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-padded")
  291. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-float-equal")
  292. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-local-typedef")
  293. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-missing-variable-declarations")
  294. endif ()
  295. else ()
  296. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")
  297. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unknown-pragmas")
  298. set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-local-typedefs")
  299. endif ()
  300. else()
  301. set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -fomit-frame-pointer")
  302. endif()
  303. # Test compiler by compiling small program.
  304. CHECK_C_SOURCE_COMPILES("
  305. #include <stdio.h>
  306. int main() {
  307. const char* text = \"A Storm is coming.\";
  308. return 0;
  309. }"
  310. COMPILER_C_WORKS
  311. )
  312. CHECK_CXX_SOURCE_COMPILES("
  313. #include <string>
  314. int main() {
  315. const std::string text = \"A Storm is coming.\";
  316. return 0;
  317. }"
  318. COMPILER_CXX_WORKS
  319. )
  320. if ((NOT COMPILER_CXX_WORKS) OR (NOT COMPILER_C_WORKS))
  321. if (MACOSX)
  322. message(FATAL_ERROR "The C/C++ compiler is not configured correctly.\nTry running 'xcode-select --install'.")
  323. else()
  324. message(FATAL_ERROR "The C/C++ compiler is not configured correctly.")
  325. endif()
  326. endif()
  327. #############################################################
  328. ##
  329. ## RPATH settings
  330. ##
  331. #############################################################
  332. # don't skip the full RPATH for the build tree
  333. SET(CMAKE_SKIP_BUILD_RPATH FALSE)
  334. # when building, don't use the install RPATH already (but only when installing)
  335. SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
  336. # the RPATH to be used when installing
  337. SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
  338. # don't add the automatically determined parts of the RPATH
  339. # which point to directories outside the build tree to the install RPATH
  340. SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
  341. #############################################################
  342. ##
  343. ## Generator specific settings
  344. ##
  345. #############################################################
  346. if ("${CMAKE_GENERATOR}" STREQUAL "Xcode")
  347. set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++14")
  348. set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
  349. endif()
  350. # Display information about build configuration.
  351. message(STATUS "Storm - Using compiler configuration ${STORM_COMPILER_ID} ${STORM_COMPILER_VERSION}.")
  352. if (STORM_DEVELOPER)
  353. message(STATUS "Storm - CXX Flags: ${CMAKE_CXX_FLAGS}")
  354. message(STATUS "Storm - CXX Debug Flags: ${CMAKE_CXX_FLAGS_DEBUG}")
  355. message(STATUS "Storm - CXX Release Flags: ${CMAKE_CXX_FLAGS_RELEASE}")
  356. message(STATUS "Storm - Build type: ${CMAKE_BUILD_TYPE}")
  357. endif()
  358. #############################################################
  359. #############################################################
  360. ##
  361. ## Inclusion of required libraries
  362. ##
  363. #############################################################
  364. #############################################################
  365. #############################################################
  366. ##
  367. ## Include the targets for non-system resources
  368. ##
  369. #############################################################
  370. # In 3rdparty, targets are being defined that can be used
  371. # in the the system does not have a library
  372. include(resources/3rdparty/CMakeLists.txt)
  373. # Include Doxygen
  374. include(resources/doxygen/CMakeLists.txt)
  375. #############################################################
  376. ##
  377. ## CMake-generated Config File for Storm
  378. ##
  379. #############################################################
  380. # try to obtain the current version from git.
  381. include(GetGitRevisionDescription)
  382. get_git_head_revision(STORM_VERSION_REFSPEC STORM_VERSION_GIT_HASH)
  383. git_describe(STORM_GIT_VERSION_STRING)
  384. # parse the git tag into variables
  385. # start with major.minor.patch
  386. string(REGEX MATCH "^([0-9]+)\\.([0-9]+)\\.([0-9]+)(.*)$" STORM_VERSION_MATCH "${STORM_GIT_VERSION_STRING}")
  387. set(STORM_VERSION_MAJOR "${CMAKE_MATCH_1}")
  388. set(STORM_VERSION_MINOR "${CMAKE_MATCH_2}")
  389. set(STORM_VERSION_PATCH "${CMAKE_MATCH_3}")
  390. set(STORM_GIT_VERSION_REST "${CMAKE_MATCH_4}")
  391. # parse rest of the form (-label)-commitsahead-hash(-appendix)
  392. string(REGEX MATCH "^(\\-([a-z][a-z0-9\\.]+))?\\-([0-9]+)\\-([a-z0-9]+)(\\-.*)?$" STORM_VERSION_REST_MATCH "${STORM_GIT_VERSION_REST}")
  393. set(STORM_VERSION_LABEL "${CMAKE_MATCH_2}") # might be empty
  394. set(STORM_VERSION_COMMITS_AHEAD "${CMAKE_MATCH_3}")
  395. set(STORM_VERSION_TAG_HASH "${CMAKE_MATCH_4}") # is not used
  396. set(STORM_VERSION_APPENDIX "${CMAKE_MATCH_5}") # might be empty
  397. # check whether the git version lookup failed
  398. if (STORM_GIT_VERSION_STRING MATCHES "NOTFOUND")
  399. set(STORM_VERSION_SOURCE "VersionSource::Static")
  400. set(STORM_VERSION_COMMITS_AHEAD 0)
  401. set(STORM_VERSION_DIRTY DirtyState::Unknown)
  402. include(version.cmake)
  403. message(WARNING "Storm - Git version information not available, statically assuming version ${STORM_VERSION_MAJOR}.${STORM_VERSION_MINOR}.${STORM_VERSION_PATCH}.")
  404. else()
  405. set(STORM_VERSION_SOURCE "VersionSource::Git")
  406. if ("${STORM_VERSION_APPENDIX}" MATCHES "^.*dirty.*$")
  407. set(STORM_VERSION_DIRTY "DirtyState::Dirty")
  408. else()
  409. set(STORM_VERSION_DIRTY "DirtyState::Clean")
  410. endif()
  411. endif()
  412. # check whether there is a label ('alpha', 'pre', etc.)
  413. if ("${STORM_VERSION_LABEL}" STREQUAL "")
  414. set(STORM_VERSION_LABEL_STRING "")
  415. else()
  416. set(STORM_VERSION_LABEL_STRING "-${STORM_VERSION_LABEL}")
  417. endif()
  418. # check for development version with commits ahead of latest tag
  419. if(STORM_VERSION_COMMITS_AHEAD)
  420. set(STORM_VERSION_DEV "true")
  421. set(STORM_VERSION_DEV_STRING " (dev)")
  422. if ("${STORM_VERSION_LABEL}" STREQUAL "")
  423. # increase patch number to indicate newer version
  424. MATH(EXPR STORM_VERSION_DEV_PATCH "${STORM_VERSION_PATCH}+1")
  425. else()
  426. set(STORM_VERSION_DEV_PATCH "${STORM_VERSION_PATCH}")
  427. endif()
  428. else()
  429. set(STORM_VERSION_COMMITS_AHEAD 0)
  430. set(STORM_VERSION_DEV "false")
  431. set(STORM_VERSION_DEV_STRING "")
  432. set(STORM_VERSION_DEV_PATCH ${STORM_VERSION_PATCH})
  433. endif()
  434. # set final Storm version
  435. set(STORM_VERSION "${STORM_VERSION_MAJOR}.${STORM_VERSION_MINOR}.${STORM_VERSION_DEV_PATCH}")
  436. set(STORM_VERSION_STRING "${STORM_VERSION}${STORM_VERSION_LABEL_STRING}${STORM_VERSION_DEV_STRING}")
  437. message(STATUS "Storm - Version is ${STORM_VERSION_STRING} (version ${STORM_VERSION_MAJOR}.${STORM_VERSION_MINOR}.${STORM_VERSION_PATCH}${STORM_VERSION_LABEL_STRING} + ${STORM_VERSION_COMMITS_AHEAD} commits), building from git: ${STORM_VERSION_GIT_HASH} (dirty: ${STORM_VERSION_DIRTY}).")
  438. # Configure a header file to pass some of the CMake settings to the source code
  439. configure_file (
  440. "${PROJECT_SOURCE_DIR}/storm-config.h.in"
  441. "${PROJECT_BINARY_DIR}/include/storm-config.h"
  442. )
  443. # Add the binary dir include directory for storm-config.h
  444. include_directories("${PROJECT_BINARY_DIR}/include")
  445. include(CTest)
  446. # Compiles all tests
  447. add_custom_target(tests)
  448. # Compiles and runs all tests
  449. add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure)
  450. set(CMAKE_CTEST_COMMAND_VERBOSE ${CMAKE_CTEST_COMMAND} -V)
  451. add_custom_target(check-verbose COMMAND ${CMAKE_CTEST_COMMAND_VERBOSE})
  452. add_dependencies(check tests)
  453. add_dependencies(check-verbose tests)
  454. set(STORM_TARGETS "")
  455. add_subdirectory(src)
  456. export_option(STORM_HAVE_XERCES)
  457. include(export)
  458. install(FILES ${CMAKE_BINARY_DIR}/stormConfig.install.cmake DESTINATION ${CMAKE_INSTALL_DIR} RENAME stormConfig.cmake)
  459. install(FILES ${CMAKE_BINARY_DIR}/stormConfigVersion.cmake DESTINATION ${CMAKE_INSTALL_DIR})
  460. install(EXPORT storm_Targets FILE stormTargets.cmake DESTINATION ${CMAKE_INSTALL_DIR})
  461. include(StormCPackConfig.cmake)