2025-01-17 18:27:46 +03:00

8 lines
271 B
Rust

fn main() {
if cfg!(feature = "kems") && !(cfg!(windows) || cfg!(target_arch = "arm")) {
// this can't enable the feature in oqs-sys, which is enabled
// through oqs-sys/kems in Cargo.toml
println!("cargo:rustc-cfg=feature=\"bike\"");
}
}