// Copyright (C) 2024 Tristan Gerritsen // All Rights Reserved. fn main() { if cfg!(target_os = "macos") { handle_macos(); } } fn handle_macos() { println!("cargo:rustc-link-lib=framework=ApplicationServices"); println!("cargo:rustc-link-lib=framework=Foundation"); println!("cargo:rustc-link-lib=framework=CoreGraphics"); println!("cargo:rustc-link-lib=framework=Quartz"); }