mirror of
https://github.com/safing/portmaster
synced 2025-04-25 13:29:10 +00:00
5 lines
158 B
Rust
5 lines
158 B
Rust
fn main() {
|
|
if let Ok("apple") = std::env::var("CARGO_CFG_TARGET_VENDOR").as_deref() {
|
|
println!("cargo:rustc-link-lib=framework=AppKit");
|
|
}
|
|
}
|