1 2 3 4 5 6 7 8
fn main() { if cfg!(windows) { println!("cargo:rustc-cfg=from_windows"); } if cfg!(unix) { println!("cargo:rustc-cfg=from_unix"); } }