Currently, this crate fails compilation at the linking stage on Windows MSVC:
LINK : fatal error LNK1181: cannot open input file 'scip.lib'
This is because the library is actually called libscip.lib on Windows, and the cl.exe linker does not add a lib prefix automatically. This PR fixes this issue, getting compilation fully working on Windows.
Currently, this crate fails compilation at the linking stage on Windows MSVC:
This is because the library is actually called
libscip.lib
on Windows, and thecl.exe
linker does not add a lib prefix automatically. This PR fixes this issue, getting compilation fully working on Windows.