You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For windows system, is it possible to put a pkg-config.exe file on this git? When building on windows, you can select the exe file to use according to the environment variable PKG_CONFIG, if there is no such environment variable, use the exe placed on git ? No need for users to find this program by themselves, and the exe file is not big
The text was updated successfully, but these errors were encountered:
Probably better to build/install as needed, as #103 suggest. Other option would be to reimplement pkg-config in rust and drop the need for an extra executable ;)
Probably better to build/install as needed, as #103 suggest. Other option would be to reimplement pkg-config in rust and drop the need for an extra executable ;)
Other option would be to reimplement pkg-config in rust and drop the need for an extra executable ;)
I have another idea: compile the pkgconf library (different from pkg-config!) with the cc crate, create Rust bindings for it, and use those in this crate. That would make it simple to use this crate reliably across platforms.
For windows system, is it possible to put a pkg-config.exe file on this git? When building on windows, you can select the exe file to use according to the environment variable PKG_CONFIG, if there is no such environment variable, use the exe placed on git ? No need for users to find this program by themselves, and the exe file is not big
The text was updated successfully, but these errors were encountered: