Skip to content

Commit

Permalink
- mark spatial as stable package
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed Mar 27, 2023
1 parent 31e9bfc commit e821cad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ option(WITH_STABLE_PACKAGES "Compile libSBML with all stable packages." OFF)
option(WITH_ALL_PACKAGES "Compile libSBML with all packages." OFF)

if (WITH_ALL_PACKAGES)
set(_EXPERIMENTAL_PACKGES "arrays;dyn;spatial;REQUIREDELEMENTS")
set(_EXPERIMENTAL_PACKGES "arrays;dyn;REQUIREDELEMENTS")
foreach(package ${_EXPERIMENTAL_PACKGES})
string(TOUPPER ${package} package_upper)
string(CONCAT package_option "ENABLE_" ${package_upper})
Expand All @@ -201,7 +201,7 @@ if (WITH_ALL_PACKAGES)
endif(WITH_ALL_PACKAGES)

if (WITH_STABLE_PACKAGES)
set(_STABLE_PACKGES "comp;distrib;fbc;groups;layout;multi;qual;render")
set(_STABLE_PACKGES "comp;distrib;fbc;groups;layout;multi;qual;render;spatial")
foreach(package ${_STABLE_PACKGES})
string(TOUPPER ${package} package_upper)
string(CONCAT package_option "ENABLE_" ${package_upper})
Expand Down

0 comments on commit e821cad

Please sign in to comment.