2020-02-27 18:34:34 -08:00
|
|
|
//! Specifies various frameworks to link against. Note that this is something where you probably
|
|
|
|
//! only want to be compiling this project on macOS. ;P
|
|
|
|
//!
|
|
|
|
//! (it checks to see if it's macOS before emitting anything, but still)
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
if std::env::var("TARGET").unwrap().contains("-apple") {
|
2020-03-17 16:55:09 -07:00
|
|
|
println!("cargo:rustc-link-lib=framework=Foundation");
|
|
|
|
println!("cargo:rustc-link-lib=framework=CoreGraphics");
|
|
|
|
|
2020-02-27 18:34:34 -08:00
|
|
|
println!("cargo:rustc-link-lib=framework=Security");
|
2020-03-17 19:11:03 -07:00
|
|
|
|
|
|
|
#[cfg(feature = "webview")]
|
2020-02-27 18:34:34 -08:00
|
|
|
println!("cargo:rustc-link-lib=framework=WebKit");
|
2020-03-16 22:22:15 -07:00
|
|
|
|
|
|
|
#[cfg(feature = "cloudkit")]
|
|
|
|
println!("cargo:rustc-link-lib=framework=CloudKit");
|
2020-03-16 22:08:12 -07:00
|
|
|
|
|
|
|
#[cfg(feature = "user-notifications")]
|
2020-02-27 18:34:34 -08:00
|
|
|
println!("cargo:rustc-link-lib=framework=UserNotifications");
|
|
|
|
}
|
|
|
|
}
|