Browse Source

CMAKE: Added option to include and link against Spot

Conflicts:
	CMakeLists.txt
tempestpy_adaptions
Tim Quatmann 3 years ago
committed by Stefan Pranger
parent
commit
c1b06f40b7
  1. 1
      CMakeLists.txt
  2. 1
      resources/cmake/find_modules/FindSPOT.cmake

1
CMakeLists.txt

@ -49,6 +49,7 @@ MARK_AS_ADVANCED(STORM_FORCE_SHIPPED_CARL)
option(USE_SMTRAT "Sets whether SMT-RAT should be included." OFF)
mark_as_advanced(USE_SMTRAT)
option(USE_HYPRO "Sets whether HyPro should be included." OFF)
mark_as_advanced(USE_HYPRO)
option(STORM_FORCE_LTL_SUPPORT "Sets whether support for LTL model checking needs to be included." OFF)
option(STORM_USE_SPOT "Sets whether Spot should be included." ON)
MARK_AS_ADVANCED(STORM_USE_SPOT)

1
resources/cmake/find_modules/FindSPOT.cmake

@ -6,6 +6,7 @@
# SPOT_VERSION - The version of spot
# use pkg-config to get the directories and then use these values
# in the find_path() and find_library() calls
find_package(PkgConfig QUIET)
PKG_CHECK_MODULES(PC_SPOT QUIET spot)

Loading…
Cancel
Save