Browse Source

Disable Debug compiler flags for PrismParser to lessen memory consumption during compilation

tempestpy_adaptions
Matthias Volk 8 years ago
parent
commit
d040e2db4b
  1. 3
      src/storm/CMakeLists.txt

3
src/storm/CMakeLists.txt

@ -28,6 +28,9 @@ if (ADDITIONAL_LINK_DIRS)
link_directories(${ADDITIONAL_LINK_DIRS})
endif(ADDITIONAL_LINK_DIRS)
# Disable Debug compiler flags for PrismParser to lessen memory consumption during compilation
SET_SOURCE_FILES_PROPERTIES(${PROJECT_SOURCE_DIR}/src/storm/parser/PrismParser.cpp PROPERTIES COMPILE_FLAGS -g0)
###############################################################################
##
## Binary creation (All link_directories() calls must be made before this point.)

Loading…
Cancel
Save