zed/crates/capture/build.rs

8 lines
298 B
Rust
Raw Normal View History

fn main() {
// Find WebRTC.framework as a sibling of the executable when running outside of an application bundle
println!("cargo:rustc-link-arg=-Wl,-rpath,@executable_path");
2022-09-02 09:42:39 +00:00
// Register exported Objective-C selectors, protocols, etc
println!("cargo:rustc-link-arg=-Wl,-ObjC");
2022-08-26 21:10:26 +00:00
}