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.
		
		
		
		
		
			
		
			
				
					
					
						
							497 lines
						
					
					
						
							22 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							497 lines
						
					
					
						
							22 KiB
						
					
					
				| cmake_minimum_required (VERSION 2.8.6) | |
|  | |
| # Set project name | |
| project (storm CXX C) | |
|  | |
| # Set the version number | |
| set (STORM_CPP_VERSION_MAJOR 1) | |
| set (STORM_CPP_VERSION_MINOR 0) | |
|  | |
| # Add base folder for better inclusion paths | |
| include_directories("${PROJECT_SOURCE_DIR}") | |
| include_directories("${PROJECT_SOURCE_DIR}/src") | |
|  | |
| # Add the version of Eigen3 in the repository to the include pathes | |
| set(EIGEN3_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/resources/3rdparty/eigen") | |
| include_directories(${EIGEN3_INCLUDE_DIR}) | |
|  | |
| # Add the version of GMM in the repository to the include pathes | |
| set(GMMXX_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/resources/3rdparty/gmm-4.2/include") | |
| include_directories(${GMMXX_INCLUDE_DIR}) | |
|  | |
|  | |
| ############################################################# | |
| ## | |
| ##	CMake options of StoRM | |
| ## | |
| ############################################################# | |
| option(DEBUG "Sets whether the DEBUG mode is used" ON) | |
| option(USE_POPCNT "Sets whether the popcnt instruction is going to be used." ON) | |
| option(USE_BOOST_STATIC_LIBRARIES "Sets whether the Boost libraries should be linked statically." ON) | |
| option(ENABLE_INTELTBB "Sets whether the Intel TBB is available." OFF) | |
| option(STORM_USE_COTIRE "Sets whether Cotire should be used (for building precompiled headers)." OFF) | |
| option(LINK_LIBCXXABI "Sets whether libc++abi should be linked." OFF) | |
| option(USE_LIBCXX "Sets whether the standard library is libc++." OFF) | |
| option(ENABLE_GLPK "Sets whether StoRM is built with support for glpk." OFF) | |
| set(GUROBI_ROOT "" CACHE STRING "The root directory of Gurobi (if available).") | |
| set(Z3_ROOT "" CACHE STRING "The root directory of Z3 (if available).") | |
| set(ADDITIONAL_INCLUDE_DIRS "" CACHE STRING "Additional directories added to the include directories.") | |
| set(ADDITIONAL_LINK_DIRS "" CACHE STRING "Additional directories added to the link directories.") | |
| set(CUSTOM_BOOST_ROOT "" CACHE STRING "A custom path to the Boost root directory.") | |
|  | |
| ############################################################# | |
| ## | |
| ##	Inclusion of required libraries | |
| ## | |
| ############################################################# | |
|  | |
| # Add the resources/cmake folder to Module Search Path for FindTBB.cmake | |
| set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/resources/cmake/") | |
|  | |
| # Boost Option variables | |
| set(Boost_USE_STATIC_LIBS        ON) | |
| set(Boost_USE_MULTITHREADED      ON) | |
| set(Boost_USE_STATIC_RUNTIME    OFF) | |
|  | |
| # If a custom boost root directory was specified, we set the corresponding hint for the script to find it. | |
| if(CUSTOM_BOOST_ROOT) | |
| 	message(STATUS "StoRM - Using Boost from CUSTOM_BOOST_ROOT located at ${CUSTOM_BOOST_ROOT}") | |
| 	set(BOOST_ROOT "${CUSTOM_BOOST_ROOT}") | |
| endif(CUSTOM_BOOST_ROOT) | |
|  | |
| find_package(Boost REQUIRED) | |
| find_package(Doxygen REQUIRED) | |
| find_package(TBB) | |
| find_package(Threads REQUIRED) | |
|  | |
| # If the DEBUG option was turned on, we will target a debug version and a release version otherwise | |
| if (DEBUG) | |
|     set (CMAKE_BUILD_TYPE "DEBUG") | |
| else() | |
|     set (CMAKE_BUILD_TYPE "RELEASE") | |
| endif() | |
| message(STATUS "StoRM - Building ${CMAKE_BUILD_TYPE} version.") | |
|  | |
| if ("${GUROBI_ROOT}" STREQUAL "") | |
|     set(ENABLE_GUROBI OFF) | |
| else() | |
|     set(ENABLE_GUROBI ON) | |
| endif() | |
|  | |
| if ("${Z3_ROOT}" STREQUAL "") | |
|     set(ENABLE_Z3 OFF) | |
| else() | |
|     set(ENABLE_Z3 ON) | |
| 	set(Z3_LIB_NAME "z3") | |
| endif() | |
|  | |
| message(STATUS "StoRM - CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") | |
| message(STATUS "StoRM - CMAKE_BUILD_TYPE (ENV): $ENV{CMAKE_BUILD_TYPE}") | |
|  | |
|  | |
| ############################################################# | |
| ## | |
| ##	Compiler specific settings and definitions | |
| ## | |
| ############################################################# | |
|  | |
| # Path to the no-strict-aliasing target | |
| set(CONVERSIONHELPER_TARGET "${PROJECT_SOURCE_DIR}/src/utility/ConversionHelper.cpp") | |
|  | |
| if(CMAKE_COMPILER_IS_GNUCC) | |
|     message(STATUS "StoRM - Using Compiler Configuration: GCC") | |
|     # Set standard flags for GCC | |
|     set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops") | |
|     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -pedantic") | |
|     # -Werror is atm removed as this gave some problems with existing code | |
|     # May be re-set later | |
|     # (Thomas Heinemann, 2012-12-21) | |
|      | |
|     # Turn on popcnt instruction if desired (yes by default) | |
|     if (USE_POPCNT) | |
|         set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt") | |
|     endif(USE_POPCNT) | |
| 	 | |
| 	# Set the no-strict-aliasing target for GCC | |
| 	set_source_files_properties(${CONVERSIONHELPER_TARGET} PROPERTIES COMPILE_FLAGS " -fno-strict-aliasing ") | |
| elseif(MSVC) | |
|     message(STATUS "StoRM - Using Compiler Configuration: MSVC") | |
| 	# required for GMM to compile, ugly error directive in their code | |
| 	add_definitions(/D_SCL_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS) | |
| 	# 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) | |
| 	add_definitions(/bigobj) | |
| 	# required by GTest and PrismGrammar::createIntegerVariable | |
| 	add_definitions(/D_VARIADIC_MAX=10) | |
| 	# Windows.h breaks GMM in gmm_except.h because of its macro definition for min and max | |
| 	add_definitions(/DNOMINMAX) | |
| 	 | |
| 	if(ENABLE_Z3) | |
| 		set(Z3_LIB_NAME "libz3") | |
| 	endif() | |
| 	 | |
| 	# MSVC does not do strict-aliasing, so no option needed | |
| else(CLANG) | |
|     message(STATUS "StoRM - Using Compiler Configuration: Clang (LLVM)") | |
| 	# As CLANG is not set as a variable, we need to set it in case we have not matched another compiler. | |
| 	set (CLANG ON) | |
|     # Set standard flags for clang | |
|     set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops -O3") | |
|     if(UNIX AND NOT APPLE AND NOT USE_LIBCXX) | |
| 		set(CLANG_STDLIB libstdc++) | |
| 		message(STATUS "StoRM - Linking against libstdc++") | |
|     else() | |
| 		set(CLANG_STDLIB libc++) | |
| 		message(STATUS "StoRM - Linking against libc++") | |
| 		# Disable Cotire | |
| 		set(STORM_USE_COTIRE OFF) | |
| 		# Set up some Xcode specific settings | |
| 		set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++11") | |
| 		set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++") | |
|     endif() | |
|      | |
|     set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -stdlib=${CLANG_STDLIB} -Wall -pedantic -Wno-unused-variable -DBOOST_RESULT_OF_USE_TR1 -DBOOST_NO_DECLTYPE -ftemplate-depth=1024") | |
|      | |
|     set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g") | |
|      | |
|     # Turn on popcnt instruction if desired (yes by default) | |
|     if (USE_POPCNT) | |
|         set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt") | |
|     endif(USE_POPCNT)     | |
| 	 | |
| 	# Set the no-strict-aliasing target for Clang | |
| 	set_source_files_properties(${CONVERSIONHELPER_TARGET} PROPERTIES COMPILE_FLAGS " -fno-strict-aliasing ") | |
| endif() | |
|  | |
| ############################################################# | |
| ## | |
| ##	CMake-generated Config File for StoRM | |
| ## | |
| ############################################################# | |
| # Base path for test files | |
| set(STORM_CPP_TESTS_BASE_PATH "${PROJECT_SOURCE_DIR}/test") | |
| # Gurobi Defines | |
| if (ENABLE_GUROBI) | |
| 	set(STORM_CPP_GUROBI_DEF "define") | |
| else() | |
| 	set(STORM_CPP_GUROBI_DEF "undef") | |
| endif() | |
|  | |
| # glpk defines | |
| if (ENABLE_GLPK) | |
| 	set(STORM_CPP_GLPK_DEF "define") | |
| else() | |
| 	set(STORM_CPP_GLPK_DEF "undef") | |
| endif() | |
|  | |
| # Z3 Defines | |
| if (ENABLE_Z3) | |
| 	set(STORM_CPP_Z3_DEF "define") | |
| else() | |
| 	set(STORM_CPP_Z3_DEF "undef") | |
| endif() | |
|  | |
| # Intel TBB Defines | |
| if (TBB_FOUND AND ENABLE_INTELTBB) | |
| 	set(STORM_CPP_INTELTBB_DEF "define") | |
| else() | |
| 	set(STORM_CPP_INTELTBB_DEF "undef") | |
| endif() | |
|  | |
| # Configure a header file to pass some of the CMake settings to the source code | |
| configure_file ( | |
| 	"${PROJECT_SOURCE_DIR}/storm-config.h.in" | |
| 	"${PROJECT_BINARY_DIR}/include/storm-config.h" | |
| ) | |
| # Add the binary dir include directory for storm-config.h | |
| include_directories("${PROJECT_BINARY_DIR}/include") | |
|  | |
| ############################################################# | |
| ## | |
| ##	Source file aggregation and clustering | |
| ## | |
| ############################################################# | |
| file(GLOB_RECURSE STORM_HEADERS ${PROJECT_SOURCE_DIR}/src/*.h) | |
| file(GLOB_RECURSE STORM_SOURCES_WITHOUT_MAIN ${PROJECT_SOURCE_DIR}/src/*/*.cpp) | |
| file(GLOB_RECURSE STORM_MAIN_FILE ${PROJECT_SOURCE_DIR}/src/storm.cpp) | |
| set(STORM_SOURCES "${STORM_SOURCES_WITHOUT_MAIN};${STORM_MAIN_FILE}") | |
| file(GLOB_RECURSE STORM_ADAPTERS_FILES ${PROJECT_SOURCE_DIR}/src/adapters/*.h ${PROJECT_SOURCE_DIR}/src/adapters/*.cpp) | |
| file(GLOB_RECURSE STORM_EXCEPTIONS_FILES ${PROJECT_SOURCE_DIR}/src/exceptions/*.h ${PROJECT_SOURCE_DIR}/src/exceptions/*.cpp) | |
| file(GLOB STORM_FORMULA_FILES ${PROJECT_SOURCE_DIR}/src/formula/*.h ${PROJECT_SOURCE_DIR}/src/formula/*.cpp) | |
| file(GLOB_RECURSE STORM_FORMULA_ABSTRACT_FILES ${PROJECT_SOURCE_DIR}/src/formula/abstract/*.h ${PROJECT_SOURCE_DIR}/src/formula/abstract/*.cpp) | |
| file(GLOB_RECURSE STORM_FORMULA_CSL_FILES ${PROJECT_SOURCE_DIR}/src/formula/Csl/*.h ${PROJECT_SOURCE_DIR}/src/formula/Csl/*.cpp) | |
| file(GLOB_RECURSE STORM_FORMULA_LTL_FILES ${PROJECT_SOURCE_DIR}/src/formula/Ltl/*.h ${PROJECT_SOURCE_DIR}/src/formula/Ltl/*.cpp) | |
| file(GLOB_RECURSE STORM_FORMULA_PRCTL_FILES ${PROJECT_SOURCE_DIR}/src/formula/Prctl/*.h ${PROJECT_SOURCE_DIR}/src/formula/Prctl/*.cpp) | |
| file(GLOB_RECURSE STORM_MODELCHECKER_FILES ${PROJECT_SOURCE_DIR}/src/modelchecker/*.h ${PROJECT_SOURCE_DIR}/src/modelchecker/*.cpp) | |
| file(GLOB_RECURSE STORM_COUNTEREXAMPLES_FILES ${PROJECT_SOURCE_DIR}/src/counterexamples/*.h ${PROJECT_SOURCE_DIR}/src/counterexamples/*.cpp) | |
| file(GLOB_RECURSE STORM_MODELS_FILES ${PROJECT_SOURCE_DIR}/src/models/*.h ${PROJECT_SOURCE_DIR}/src/models/*.cpp) | |
| file(GLOB STORM_PARSER_FILES ${PROJECT_SOURCE_DIR}/src/parser/*.h ${PROJECT_SOURCE_DIR}/src/parser/*.cpp) | |
| file(GLOB_RECURSE STORM_PARSER_PRISMPARSER_FILES ${PROJECT_SOURCE_DIR}/src/parser/prismparser/*.h ${PROJECT_SOURCE_DIR}/src/parser/prismparser/*.cpp) | |
| file(GLOB_RECURSE STORM_SETTINGS_FILES ${PROJECT_SOURCE_DIR}/src/settings/*.h ${PROJECT_SOURCE_DIR}/src/settings/*.cpp) | |
| file(GLOB_RECURSE STORM_SOLVER_FILES ${PROJECT_SOURCE_DIR}/src/solver/*.h ${PROJECT_SOURCE_DIR}/src/solver/*.cpp) | |
| file(GLOB_RECURSE STORM_STORAGE_FILES ${PROJECT_SOURCE_DIR}/src/storage/*.h ${PROJECT_SOURCE_DIR}/src/storage/*.cpp) | |
| file(GLOB_RECURSE STORM_UTILITY_FILES ${PROJECT_SOURCE_DIR}/src/utility/*.h ${PROJECT_SOURCE_DIR}/src/utility/*.cpp) | |
| file(GLOB STORM_IR_FILES ${PROJECT_SOURCE_DIR}/src/ir/*.h ${PROJECT_SOURCE_DIR}/src/ir/*.cpp) | |
| file(GLOB_RECURSE STORM_IR_EXPRESSIONS_FILES ${PROJECT_SOURCE_DIR}/src/ir/expressions/*.h ${PROJECT_SOURCE_DIR}/src/ir/expressions/*.cpp) | |
|  | |
| # Test Sources | |
| # Note that the tests also need the source files, except for the main file | |
| file(GLOB_RECURSE STORM_FUNCTIONAL_TEST_FILES ${STORM_CPP_TESTS_BASE_PATH}/functional/*.h ${STORM_CPP_TESTS_BASE_PATH}/functional/*.cpp) | |
| file(GLOB_RECURSE STORM_PERFORMANCE_TEST_FILES ${STORM_CPP_TESTS_BASE_PATH}/performance/*.h ${STORM_CPP_TESTS_BASE_PATH}/performance/*.cpp) | |
|  | |
| # Additional include files like the storm-config.h | |
| file(GLOB_RECURSE STORM_BUILD_HEADERS ${PROJECT_BINARY_DIR}/include/*.h) | |
|  | |
| # Group the headers and sources | |
| source_group(main FILES ${STORM_MAIN_FILE}) | |
| source_group(adapters FILES ${STORM_ADAPTERS_FILES}) | |
| source_group(exceptions FILES ${STORM_EXCEPTIONS_FILES}) | |
| source_group(formula FILES ${STORM_FORMULA_FILES}) | |
| source_group(formula\\abstract FILES ${STORM_FORMULA_ABSTRACT_FILES}) | |
| source_group(formula\\csl FILES ${STORM_FORMULA_CSL_FILES}) | |
| source_group(formula\\ltl FILES ${STORM_FORMULA_LTL_FILES}) | |
| source_group(formula\\prctl FILES ${STORM_FORMULA_PRCTL_FILES}) | |
| source_group(generated FILES ${STORM_BUILD_HEADERS}) | |
| source_group(ir FILES ${STORM_IR_FILES}) | |
| source_group(ir\\expressions FILES ${STORM_IR_EXPRESSIONS_FILES}) | |
| source_group(modelchecker FILES ${STORM_MODELCHECKER_FILES}) | |
| source_group(counterexamples FILES ${STORM_COUNTEREXAMPLES_FILES}) | |
| source_group(models FILES ${STORM_MODELS_FILES}) | |
| source_group(parser FILES ${STORM_PARSER_FILES}) | |
| source_group(parser\\prismparser FILES ${STORM_PARSER_PRISMPARSER_FILES}) | |
| source_group(settings FILES ${STORM_SETTINGS_FILES}) | |
| source_group(solver FILES ${STORM_SOLVER_FILES}) | |
| source_group(storage FILES ${STORM_STORAGE_FILES}) | |
| source_group(utility FILES ${STORM_UTILITY_FILES}) | |
| source_group(functional-test FILES ${STORM_FUNCTIONAL_TEST_FILES}) | |
| source_group(performance-test FILES ${STORM_PERFORMANCE_TEST_FILES}) | |
|  | |
| # Add custom additional include or link directories | |
| if (ADDITIONAL_INCLUDE_DIRS) | |
| 	message(STATUS "StoRM - Using additional include directories ${ADDITIONAL_INCLUDE_DIRS}") | |
| 	include_directories(${ADDITIONAL_INCLUDE_DIRS}) | |
| endif(ADDITIONAL_INCLUDE_DIRS) | |
| if (ADDITIONAL_LINK_DIRS) | |
| 	message(STATUS "StoRM - Using additional link directories ${ADDITIONAL_LINK_DIRS}") | |
| 	link_directories(${ADDITIONAL_LINK_DIRS}) | |
| endif(ADDITIONAL_LINK_DIRS) | |
|  | |
| ############################################################# | |
| ## | |
| ##	Pre executable-creation link_directories setup | |
| ## | |
| ############################################################# | |
| if (ENABLE_GUROBI) | |
| 	link_directories("${GUROBI_ROOT}/lib") | |
| endif() | |
| if (ENABLE_Z3) | |
|     link_directories("${Z3_ROOT}/bin") | |
| endif() | |
| if ((NOT Boost_LIBRARY_DIRS) OR ("${Boost_LIBRARY_DIRS}" STREQUAL "")) | |
| 	set(Boost_LIBRARY_DIRS "${Boost_INCLUDE_DIRS}/stage/lib") | |
| endif () | |
| link_directories(${Boost_LIBRARY_DIRS}) | |
| if (TBB_FOUND AND ENABLE_INTELTBB) | |
| 	link_directories(${TBB_LIBRARY_DIRS}) | |
| endif() | |
|  | |
| ############################################################################### | |
| ##                                                                            # | |
| ##	Executable Creation                                                       # | |
| ##                                                                            # | |
| ##  All link_directories() calls MUST be made before this point               # | |
| ##                                                                            # | |
| ############################################################################### | |
| add_executable(storm ${STORM_SOURCES} ${STORM_HEADERS} ${STORM_BUILD_HEADERS}) | |
| add_executable(storm-functional-tests ${STORM_FUNCTIONAL_TEST_FILES} ${STORM_SOURCES_WITHOUT_MAIN} ${STORM_HEADERS} ${STORM_BUILD_HEADERS}) | |
| add_executable(storm-performance-tests ${STORM_PERFORMANCE_TEST_FILES} ${STORM_SOURCES_WITHOUT_MAIN} ${STORM_HEADERS} ${STORM_BUILD_HEADERS}) | |
|  | |
| ############################################################# | |
| ## | |
| ##	Boost | |
| ## | |
| ############################################################# | |
| include_directories(${Boost_INCLUDE_DIRS}) | |
| target_link_libraries(storm ${Boost_LIBRARIES})    | |
| target_link_libraries(storm-functional-tests ${Boost_LIBRARIES}) | |
| target_link_libraries(storm-performance-tests ${Boost_LIBRARIES}) | |
| #message(STATUS "BOOST_INCLUDE_DIRS is ${Boost_INCLUDE_DIRS}") | |
| #message(STATUS "BOOST_LIBRARY_DIRS is ${Boost_LIBRARY_DIRS}") | |
|  | |
| ############################################################# | |
| ## | |
| ##	CUDD | |
| ## | |
| ############################################################# | |
| add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/cudd") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/epd") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/mtr") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/nanotrav") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/obj") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/st") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/cudd-2.5.0/src/util") | |
| target_link_libraries(storm cudd) | |
| target_link_libraries(storm-functional-tests cudd) | |
| target_link_libraries(storm-performance-tests cudd) | |
|  | |
| ############################################################# | |
| ## | |
| ##	LTL2DSTAR | |
| ## | |
| ############################################################# | |
| add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/ltl2dstar-0.5.1") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/ltl2dstar-0.5.1/src") | |
| target_link_libraries(storm ltl2dstar) | |
| target_link_libraries(storm-functional-tests ltl2dstar) | |
| target_link_libraries(storm-performance-tests ltl2dstar) | |
|  | |
| ############################################################# | |
| ## | |
| ##	Gurobi (optional) | |
| ## | |
| ############################################################# | |
| if (ENABLE_GUROBI) | |
|     message (STATUS "StoRM - Linking with Gurobi") | |
| 	include_directories("${GUROBI_ROOT}/include") | |
|     target_link_libraries(storm "gurobi56") | |
|     target_link_libraries(storm-functional-tests "gurobi56") | |
|     target_link_libraries(storm-performance-tests "gurobi56") | |
| endif(ENABLE_GUROBI) | |
|  | |
| ############################################################# | |
| ## | |
| ##	glpk (optional) | |
| ## | |
| ############################################################# | |
| if (ENABLE_GLPK) | |
|     message (STATUS "StoRM - Linking with glpk") | |
|     target_link_libraries(storm "glpk") | |
|     target_link_libraries(storm-functional-tests "glpk") | |
|     target_link_libraries(storm-performance-tests "glpk") | |
| endif(ENABLE_GLPK) | |
|  | |
| ############################################################# | |
| ## | |
| ##	Z3 (optional) | |
| ## | |
| ############################################################# | |
| if (ENABLE_Z3) | |
|     message (STATUS "StoRM - Linking with Z3") | |
| 	include_directories("${Z3_ROOT}/include") | |
|     target_link_libraries(storm ${Z3_LIB_NAME}) | |
|     target_link_libraries(storm-functional-tests ${Z3_LIB_NAME}) | |
|     target_link_libraries(storm-performance-tests ${Z3_LIB_NAME}) | |
| endif(ENABLE_Z3) | |
|  | |
| ############################################################# | |
| ## | |
| ##	Google Test gtest | |
| ## | |
| ############################################################# | |
| set(gtest_force_shared_crt ON) | |
| add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/gtest-1.7.0") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/gtest-1.7.0/include") | |
| enable_testing() | |
| target_link_libraries(storm-functional-tests gtest) | |
| target_link_libraries(storm-performance-tests gtest) | |
| add_test(NAME storm-functional-tests COMMAND storm-functional-tests) | |
| add_test(NAME storm-performance-tests COMMAND storm-performance-tests) | |
|  | |
| ############################################################# | |
| ## | |
| ##	Log4CPlus | |
| ## | |
| ############################################################# | |
| set(BUILD_SHARED_LIBS OFF CACHE BOOL "If TRUE, log4cplus is built as a shared library, otherwise as a static library") | |
| set(LOG4CPLUS_BUILD_TESTING NO) | |
| set(LOG4CPLUS_USE_UNICODE OFF) | |
| add_subdirectory("${PROJECT_SOURCE_DIR}/resources/3rdparty/log4cplus-1.1.2-rc2") | |
| include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/log4cplus-1.1.2-rc2/include") | |
| include_directories("${PROJECT_BINARY_DIR}/resources/3rdparty/log4cplus-1.1.2-rc2/include") # This adds the defines.hxx file | |
| target_link_libraries(storm log4cplusS) | |
| target_link_libraries(storm-functional-tests log4cplusS) | |
| target_link_libraries(storm-performance-tests log4cplusS) | |
| if (UNIX AND NOT APPLE) | |
| 	target_link_libraries(storm rt) | |
| 	if (STORM_USE_COTIRE) | |
| 		target_link_libraries(storm_unity rt) | |
| 	endif(STORM_USE_COTIRE) | |
| 	target_link_libraries(storm-functional-tests rt) | |
| 	target_link_libraries(storm-performance-tests rt) | |
| endif(UNIX AND NOT APPLE) | |
|  | |
| ############################################################# | |
| ## | |
| ##	Intel Threading Building Blocks (optional) | |
| ## | |
| ############################################################# | |
| if (TBB_FOUND) | |
| 	message(STATUS "StoRM - Found Intel TBB with interface version ${TBB_INTERFACE_VERSION}.") | |
| 	if (ENABLE_INTELTBB) | |
| 		message(STATUS "StoRM - Linking with Intel TBB in ${TBB_LIBRARY_DIRS}.") | |
| 		include_directories(${TBB_INCLUDE_DIRS}) | |
| 		target_link_libraries(storm tbb tbbmalloc) | |
| 		target_link_libraries(storm-functional-tests tbb tbbmalloc) | |
| 		target_link_libraries(storm-performance-tests tbb tbbmalloc) | |
| 	endif(ENABLE_INTELTBB) | |
| endif(TBB_FOUND) | |
|  | |
| ############################################################# | |
| ## | |
| ##	Threads | |
| ## | |
| ############################################################# | |
| include_directories(${THREADS_INCLUDE_DIRS}) | |
| target_link_libraries(storm ${CMAKE_THREAD_LIBS_INIT}) | |
| if (STORM_USE_COTIRE) | |
| 	target_link_libraries(storm_unity ${CMAKE_THREAD_LIBS_INIT}) | |
| endif(STORM_USE_COTIRE) | |
| target_link_libraries(storm-functional-tests ${CMAKE_THREAD_LIBS_INIT}) | |
| target_link_libraries(storm-performance-tests ${CMAKE_THREAD_LIBS_INIT}) | |
|  | |
| if (MSVC) | |
| 	# Add the DebugHelper DLL | |
| 	set(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} Dbghelp.lib") | |
| 	target_link_libraries(storm "Dbghelp.lib")    | |
| 	target_link_libraries(storm-functional-tests "Dbghelp.lib") | |
| 	target_link_libraries(storm-performance-tests "Dbghelp.lib") | |
| endif(MSVC) | |
|  | |
| # Print Cotire Usage Status | |
| message (STATUS "StoRM - Using Cotire: ${STORM_USE_COTIRE}") | |
|  | |
| if (STORM_USE_COTIRE) | |
| 	# Include Cotire for PCH Generation | |
| 	set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/resources/cmake") | |
| 	include(cotire) | |
|  | |
| 	cotire(storm) | |
| 	target_link_libraries(storm_unity ${Boost_LIBRARIES}) | |
| 	#cotire(storm-functional-tests) | |
| 	#cotire(storm-performance-tests) | |
| endif() | |
|  | |
| # Link against libc++abi if requested. May be needed to build on Linux systems using clang. | |
| if (LINK_LIBCXXABI) | |
| 	message (STATUS "StoRM - Linking against libc++abi.") | |
| 	target_link_libraries(storm "c++abi") | |
| 	target_link_libraries(storm-functional-tests "c++abi") | |
| 	target_link_libraries(storm-performance-tests "c++abi") | |
| endif(LINK_LIBCXXABI) | |
|  | |
| # Add a target to generate API documentation with Doxygen | |
| if(DOXYGEN_FOUND) | |
|     set(CMAKE_DOXYGEN_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/doc") | |
|     string(REGEX REPLACE ";" " " CMAKE_DOXYGEN_INPUT_LIST "${PROJECT_SOURCE_DIR}/src") | |
|  | |
|     configure_file("${CMAKE_CURRENT_SOURCE_DIR}/doc/Doxyfile.in" "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" @ONLY) | |
|  | |
|     add_custom_target(doc ${DOXYGEN_EXECUTABLE} "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile" COMMENT "Generating API documentation with Doxygen" VERBATIM) | |
| endif(DOXYGEN_FOUND) | |
|  | |
| 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) | |
| 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) | |
| 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) | |
|  | |
| set(CPPLINT_ARGS --filter=-whitespace/tab,-whitespace/line_length,-legal/copyright,-readability/streams) | |
| add_custom_target(style python cpplint.py ${CPPLINT_ARGS} `find ./src/ -iname "*.h" -or -iname "*.cpp" `)
 |