1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-06-06 14:47:46 +00:00

Don't probe system dependencies on Windows

This should help unbreak the Astra build on Windows.
This commit is contained in:
Joshua Goins 2024-06-29 09:55:08 -04:00
parent 9e831047fc
commit c90a46186f

View file

@ -2,5 +2,7 @@
// SPDX-License-Identifier: GPL-3.0-or-later
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();
}