Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v9-minor'
Browse files Browse the repository at this point in the history
  • Loading branch information
scip-ci committed Nov 8, 2024
2 parents a39a343 + 694eadd commit 119a20e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ Build system

### Cmake

- fix SCIP Optimization Suite build with -DSYM=bliss and bliss being downloaded and build during configuration by cmake

### Makefile

Miscellaneous
Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ if(SYM STREQUAL "bliss" OR SYM STREQUAL "sbliss")
if (NOT Bliss_FOUND)
message(FATAL_ERROR "Automatic download of Bliss failed. Please specify the BLISS_DIR.")
endif()
include_directories(${CMAKE_CURRENT_BINARY_DIR}/_deps/local/include)
set(SYM_LIBRARIES ${CMAKE_CURRENT_BINARY_DIR}/_deps/local/lib/libbliss.a)
set(SYM_PIC_LIBRARIES ${CMAKE_CURRENT_BINARY_DIR}/_deps/local/lib/libbliss.a)
message(STATUS "Installed Bliss in: ${CMAKE_CURRENT_BINARY_DIR}/_deps/local")
include_directories(${CMAKE_BINARY_DIR}/_deps/local/include)
set(SYM_LIBRARIES ${CMAKE_BINARY_DIR}/_deps/local/lib/libbliss.a)
set(SYM_PIC_LIBRARIES ${CMAKE_BINARY_DIR}/_deps/local/lib/libbliss.a)
message(STATUS "Installed Bliss in: ${CMAKE_BINARY_DIR}/_deps/local")
endif()
elseif(SYM STREQUAL "nauty" OR SYM STREQUAL "snauty")
if(NAUTY_DIR)
Expand Down

0 comments on commit 119a20e

Please sign in to comment.