mirror of
https://github.com/redstrate/Physis.git
synced 2025-06-07 07:07:45 +00:00
Don't probe system dependencies on Windows
This should help unbreak the Astra build on Windows.
This commit is contained in:
parent
9e831047fc
commit
c90a46186f
1 changed files with 2 additions and 0 deletions
2
build.rs
2
build.rs
|
@ -2,5 +2,7 @@
|
||||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
// Windows doesn't ship pkgconfig files, typically. At least in our build system.
|
||||||
|
#[cfg(not(target_os = "windows"))]
|
||||||
system_deps::Config::new().probe().unwrap();
|
system_deps::Config::new().probe().unwrap();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue