1 2 3 4 5 6 7
#[cfg(target_os = "macos")] fn main() { println!("cargo:rustc-link-search=framework=/System/Library/PrivateFrameworks"); } #[cfg(not(target_os = "macos"))] fn main() {}