-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Open
Labels
BugBuild: CMakeCMake based build issueCMake based build issueLang: C++Native implementation issueNative implementation issueOS: WindowsWindows OSWindows OS
Milestone
Description
As spotted by user the cmake/bundle-install.cmake.in is not working in config Debug since we don't take into account the variable CMAKE_DEBUG_POSTFIX.
here we should add few wildcard (or better use ${CMAKE_DEBUG_POSTFIX}) to find the correct static lib dependencies
or-tools/cmake/bundle-install.cmake.in
Lines 16 to 38 in a834604
| set(DEPS absl_*.lib zlib.lib re2.lib *protobuf.lib) | |
| if (@BUILD_Cbc@) | |
| set(DEPS ${DEPS} Cbc*.lib) | |
| endif() | |
| if (@BUILD_Cgl@) | |
| set(DEPS ${DEPS} Cgl.lib) | |
| endif() | |
| if (@BUILD_Clp@) | |
| set(DEPS ${DEPS} Clp*.lib) | |
| endif() | |
| if (@BUILD_Osi@) | |
| set(DEPS ${DEPS} Osi*.lib) | |
| endif() | |
| if (@BUILD_CoinUtils@) | |
| set(DEPS ${DEPS} CoinUtils.lib) | |
| endif() | |
| if (@BUILD_SCIP@) | |
| set(DEPS ${DEPS} libscip.lib) | |
| endif() | |
| if (@BUILD_GLPK@) | |
| set(DEPS ${DEPS} libglpk.lib) | |
| endif() |
Todo:
- Fix debug postfix managment
- Add ci job to test it
abeham and EddyXorb
Metadata
Metadata
Assignees
Labels
BugBuild: CMakeCMake based build issueCMake based build issueLang: C++Native implementation issueNative implementation issueOS: WindowsWindows OSWindows OS