Files
spacedrive/apps/desktop/crates/macos/build.rs
Brendan Allan 2393a1f594 restrict all swift stuff to macos only (#590)
restrict all swift stuff to macos only
2023-03-03 21:29:52 -08:00

7 lines
133 B
Rust

fn main() {
#[cfg(target_os = "macos")]
swift_rs::SwiftLinker::new("10.15")
.with_package("sd-desktop-macos", "./")
.link();
}