Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v92-bugfix' into v9-minor
Browse files Browse the repository at this point in the history
  • Loading branch information
scip-ci committed Nov 8, 2024
2 parents 2fd908d + 2ca6a13 commit 694eadd
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 @@ -51,6 +51,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 @@ -162,10 +162,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 694eadd

Please sign in to comment.