dinghy-lib 0.4.0

Cross-compilation made easier - see main crate cargo-dinghy
Documentation
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() {}