Skip to content

Commit

Permalink
Handle GLPK library naming on windows
Browse files Browse the repository at this point in the history
libglpk.a on linux, GLPK.lib on windows.
  • Loading branch information
jamiecook authored and Mizux committed Nov 26, 2024
1 parent d2badaa commit 49aa19d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/bundle-install.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ if (@BUILD_SCIP@)
set(DEPS ${DEPS} libscip.lib)
endif()
if (@BUILD_GLPK@)
set(DEPS ${DEPS} libglpk.lib)
set(DEPS ${DEPS} *glpk.lib)
endif()

# Bundle all .lib into @PROJECT_NAME@_full.lib
Expand Down

0 comments on commit 49aa19d

Please sign in to comment.