Rust · 351 bytes Raw Blame History
1 fn main() {
2 // SkyLight is a private framework — need to add its search path
3 println!("cargo:rustc-link-search=framework=/System/Library/PrivateFrameworks");
4 println!("cargo:rustc-link-lib=framework=SkyLight");
5 println!("cargo:rustc-link-lib=framework=CoreGraphics");
6 println!("cargo:rustc-link-lib=framework=CoreFoundation");
7 }
8