Skip to content

Commit

Permalink
Bumped shipped Spot version to 2.12 (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
volkm authored Jul 13, 2024
1 parent 1a5ae26 commit b410037
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/3rdparty/include_spot.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if(STORM_USE_SPOT_SHIPPED AND NOT STORM_HAVE_SPOT)

# download and install shipped Spot
ExternalProject_Add(spot
URL http://www.lrde.epita.fr/dload/spot/spot-2.10.4.tar.gz # When updating, also change version output below
URL https://www.lrde.epita.fr/dload/spot/spot-2.12.tar.gz # When updating, also change version output below
DOWNLOAD_NO_PROGRESS TRUE
DOWNLOAD_DIR ${STORM_3RDPARTY_BINARY_DIR}/spot_src
SOURCE_DIR ${STORM_3RDPARTY_BINARY_DIR}/spot_src
Expand All @@ -43,15 +43,15 @@ if(STORM_USE_SPOT_SHIPPED AND NOT STORM_HAVE_SPOT)
LOG_INSTALL ON
BUILD_BYPRODUCTS ${STORM_3RDPARTY_BINARY_DIR}/spot/lib/libspot${DYNAMIC_EXT}
)
add_dependencies(resources spot)
add_dependencies(resources spot)
set(SPOT_INCLUDE_DIR "${STORM_3RDPARTY_BINARY_DIR}/spot/include/")
set(SPOT_DIR "${STORM_3RDPARTY_BINARY_DIR}/spot/")
set(SPOT_LIBRARIES ${STORM_3RDPARTY_BINARY_DIR}/spot/lib/libspot${DYNAMIC_EXT})
set(SPOT_LIBRARIES "${SPOT_LIBRARIES};${STORM_3RDPARTY_BINARY_DIR}/spot/lib/libbddx${DYNAMIC_EXT}")
set(STORM_HAVE_SPOT ON)
set(STORM_SHIPPED_SPOT ON)

message(STATUS "Storm - Using shipped version of Spot 2.10.4 (include: ${SPOT_INCLUDE_DIR}, library ${SPOT_LIBRARIES}).")
message(STATUS "Storm - Using shipped version of Spot 2.12 (include: ${SPOT_INCLUDE_DIR}, library ${SPOT_LIBRARIES}).")

endif()

Expand Down

0 comments on commit b410037

Please sign in to comment.