mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 14:06:11 +03:00
8 lines
298 B
Rust
8 lines
298 B
Rust
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");
|
|
|
|
// Register exported Objective-C selectors, protocols, etc
|
|
println!("cargo:rustc-link-arg=-Wl,-ObjC");
|
|
}
|