helix/helix-view/build.rs

11 lines
276 B
Rust
Raw Normal View History

2025-01-24 03:55:31 +08:00
fn main() {
// alias scancode feature flag
2025-05-15 02:22:03 +08:00
println!("cargo::rustc-check-cfg=cfg(scancode)");
2025-02-20 04:18:09 +08:00
#[cfg(any(
feature = "scancode-query",
feature = "scancode-evdev",
feature = "scancode-hidapi"
2025-05-15 02:22:03 +08:00
))]
2025-01-24 03:55:31 +08:00
println!("cargo:rustc-cfg=scancode")
}