Browse Source

cleaned cmake list (removal of python related stuff), slightly altered doc (mainly just to improve further work on that

tempestpy_adaptions
sjunges 8 years ago
parent
commit
df87d7fa13
  1. 7
      CMakeLists.txt
  2. 6
      doc/build.md

7
CMakeLists.txt

@ -36,7 +36,6 @@ option(USE_HYPRO "Sets whether HyPro should be included." OFF)
option(XML_SUPPORT "Sets whether xml based format parsing should be included." ON) option(XML_SUPPORT "Sets whether xml based format parsing should be included." ON)
option(FORCE_COLOR "Force color output" OFF) option(FORCE_COLOR "Force color output" OFF)
mark_as_advanced(FORCE_COLOR) mark_as_advanced(FORCE_COLOR)
option(STORM_PYTHON "Build the API for Python" OFF)
option(STORM_COMPILE_WITH_CCACHE "Compile using CCache [if found]" ON) option(STORM_COMPILE_WITH_CCACHE "Compile using CCache [if found]" ON)
mark_as_advanced(STORM_COMPILE_WITH_CCACHE) mark_as_advanced(STORM_COMPILE_WITH_CCACHE)
option(STORM_LOG_DISABLE_DEBUG "Disable log and trace message support" OFF) option(STORM_LOG_DISABLE_DEBUG "Disable log and trace message support" OFF)
@ -132,11 +131,6 @@ endif()
message(STATUS "Assuming extension for shared libraries: ${DYNAMIC_EXT}") message(STATUS "Assuming extension for shared libraries: ${DYNAMIC_EXT}")
message(STATUS "Assuming extension for static libraries: ${STATIC_EXT}") message(STATUS "Assuming extension for static libraries: ${STATIC_EXT}")
# Python bindings need shared library
if(STORM_PYTHON)
set(BUILD_SHARED_LIBS ON CACHE BOOL "Build the Storm library dynamically" FORCE)
endif()
if(BUILD_SHARED_LIBS) if(BUILD_SHARED_LIBS)
set(LIB_EXT ${DYNAMIC_EXT}) set(LIB_EXT ${DYNAMIC_EXT})
message(STATUS "Build dynamic libraries.") message(STATUS "Build dynamic libraries.")
@ -365,7 +359,6 @@ set(CMAKE_CTEST_COMMAND_VERBOSE ${CMAKE_CTEST_COMMAND} -V)
add_custom_target(check-verbose COMMAND ${CMAKE_CTEST_COMMAND_VERBOSE}) add_custom_target(check-verbose COMMAND ${CMAKE_CTEST_COMMAND_VERBOSE})
# Python bindings for storm
set(STORM_TARGETS "") set(STORM_TARGETS "")
add_subdirectory(src) add_subdirectory(src)

6
doc/build.md

@ -23,9 +23,11 @@ Prerequisites:
## Instructions ## Instructions
### General ### General
> mkdir build
```bash
mkdir build
cd build
```
It is recommended to make an out-of-source build, meaning that the folder in which CMake generates its Cache, Makefiles and output files should not be the Project Root nor its Source Directory. It is recommended to make an out-of-source build, meaning that the folder in which CMake generates its Cache, Makefiles and output files should not be the Project Root nor its Source Directory.
A typical build layout is to create a folder "build" in the project root alongside the CMakeLists.txt file, change into this folder and execute "cmake .." as this will leave all source files untouched A typical build layout is to create a folder "build" in the project root alongside the CMakeLists.txt file, change into this folder and execute "cmake .." as this will leave all source files untouched

Loading…
Cancel
Save