Files
niri/build.rs
T

11 lines
274 B
Rust
Raw Normal View History

2025-12-29 16:14:52 +03:00
fn main() {
println!("cargo:rustc-check-cfg=cfg(have_libinput_plugin_system)");
if pkg_config::Config::new()
.atleast_version("1.30.0")
.probe("libinput")
.is_ok()
{
println!("cargo:rustc-cfg=have_libinput_plugin_system")
}
}