first let me say thank you for the wonderfull work on good_lp and supporting packages. I'm planning to use HiGHS with good_lp, but would like to use the version already available on my system, rather than always compiling one from source.
Using the pkg-config crate, you might discover an already available version of HiGHS and link against that. In order to not break any existing use cases, it may also be desirable to control this via an environment variable.
The libusb1-sys crate does something similar in their build.rs.
Hi,
first let me say thank you for the wonderfull work on good_lp and supporting packages. I'm planning to use HiGHS with good_lp, but would like to use the version already available on my system, rather than always compiling one from source.
Using the pkg-config crate, you might discover an already available version of HiGHS and link against that. In order to not break any existing use cases, it may also be desirable to control this via an environment variable.
The libusb1-sys crate does something similar in their build.rs.
Thank you for your consideration!