mirror of https://github.com/helix-editor/helix
6 lines
162 B
Rust
6 lines
162 B
Rust
|
fn main() {
|
||
|
// alias scancode feature flag
|
||
|
#[cfg(any(feature = "scancode-query", feature = "scancode-evdev"))]
|
||
|
println!("cargo:rustc-cfg=scancode")
|
||
|
}
|