cmake: migrate to scip 10.0.0 and soplex 8.0.0

This commit is contained in:
Corentin Le Molgat
2025-12-01 14:56:45 +01:00
parent 91e63a7d41
commit 6555f4d2e4
4 changed files with 81 additions and 123 deletions

View File

@@ -353,11 +353,11 @@ if(BUILD_soplex)
FetchContent_Declare(
soplex
GIT_REPOSITORY "https://github.com/scipopt/soplex.git"
GIT_TAG "release-716"
GIT_TAG "v8.0.0"
GIT_SHALLOW TRUE
UPDATE_COMMAND git reset --hard
PATCH_COMMAND git apply --ignore-whitespace
"${CMAKE_CURRENT_LIST_DIR}/../../patches/soplex-v7.1.6.patch"
"${CMAKE_CURRENT_LIST_DIR}/../../patches/soplex-v8.0.0.patch"
)
set(SHARED ON CACHE BOOL "Soplex param" FORCE)
set(ZLIB ON CACHE BOOL "Soplex param" FORCE)
@@ -383,11 +383,11 @@ if(BUILD_SCIP)
FetchContent_Declare(
scip
GIT_REPOSITORY "https://github.com/scipopt/scip.git"
GIT_TAG "v924"
GIT_TAG "v10.0.0"
GIT_SHALLOW TRUE
UPDATE_COMMAND git reset --hard
PATCH_COMMAND git apply --ignore-whitespace
"${CMAKE_CURRENT_LIST_DIR}/../../patches/scip-v924.patch"
"${CMAKE_CURRENT_LIST_DIR}/../../patches/scip-v10.0.0.patch"
)
set(SHARED ON CACHE BOOL "Scip param" FORCE)
set(ZLIB ON CACHE BOOL "Scip param" FORCE)