boring2/openssl/build.rs

14 lines
248 B
Rust

fn main() {
let mut cfgs = vec![];
cfgs.push("ossl101");
cfgs.push("ossl102");
cfgs.push("ossl102f");
cfgs.push("ossl102h");
cfgs.push("ossl110");
for cfg in cfgs {
println!("cargo:rustc-cfg={}", cfg);
}
}