helix/helix-view/build.rs

10 lines
221 B
Rust
Raw Normal View History

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