1 2 3 4 5 6 7 8 9
fn main() { #[cfg(feature = "user")] { if std::env::var("TARGET").map( |t| t == "x86_64-pc-windows-gnu" || t == "i686-pc-windows-gnu" ).unwrap_or(false) { println!("cargo:rustc-link-lib=winapi_ntdll"); } } }