Copy WebRTC.framework when building livekit crate

We determine the location of the target executable directory in a somewhat hacky way, but it seems reasonably stable.

Co-Authored-By: Antonio Scandurra <me@as-cii.com>
This commit is contained in:
Nathan Sobo 2022-09-06 08:56:49 -06:00 committed by Antonio Scandurra
parent 4bcc008cbf
commit 3c2566fc11
2 changed files with 61 additions and 34 deletions

View File

@ -1,12 +1,7 @@
use std::{env, path::PathBuf, process::Command}; use std::{env, path::PathBuf, process::Command};
fn main() { fn main() {
println!( // Find WebRTC.framework as a sibling of the executable when running outside of an application bundle
"cargo:rustc-link-search=framework={}",
"crates/live_kit/LiveKitBridge/.build/arm64-apple-macosx/debug"
);
// Find frameworks as a sibling of the executable at runtime
println!("cargo:rustc-link-arg=-Wl,-rpath,@executable_path"); println!("cargo:rustc-link-arg=-Wl,-rpath,@executable_path");
println!("cargo:rustc-link-lib=framework=ScreenCaptureKit"); println!("cargo:rustc-link-lib=framework=ScreenCaptureKit");

View File

@ -29,53 +29,70 @@ pub struct SwiftTarget {
const MACOS_TARGET_VERSION: &str = "12"; const MACOS_TARGET_VERSION: &str = "12";
fn main() { fn main() {
build_bridge(); let swift_target = get_swift_target();
link_swift_stdlib();
build_bridge(&swift_target);
link_swift_stdlib(&swift_target);
link_webrtc_framework(&swift_target);
} }
fn build_bridge() { fn build_bridge(swift_target: &SwiftTarget) {
let profile = env::var("PROFILE").unwrap(); let swift_package_root = swift_package_root();
let package_name = "LiveKitBridge";
let package_root = env::current_dir().unwrap().join(package_name);
if !Command::new("swift") if !Command::new("swift")
.args(&["build", "-c", &profile]) .args(&["build", "-c", &env::var("PROFILE").unwrap()])
.current_dir(&package_root) .current_dir(&swift_package_root)
.status() .status()
.unwrap() .unwrap()
.success() .success()
{ {
panic!( panic!(
"Failed to compile swift package in {}", "Failed to compile swift package in {}",
package_root.display() swift_package_root.display()
); );
} }
let swift_target_info = get_swift_target();
let swift_out_dir_path = format!(
"{}/.build/{}/{}",
package_root.display(),
swift_target_info.target.unversioned_triple,
profile
);
println!("cargo:rustc-link-search=native={}", swift_out_dir_path);
println!( println!(
"cargo:rustc-link-search=framework={}", "cargo:rustc-link-search=native={}",
"/Users/nathan/src/zed/crates/live_kit/frameworks" swift_target.out_dir_path().display()
); );
println!("cargo:rustc-link-lib=static={}", package_name); println!("cargo:rustc-link-lib=static={}", SWIFT_PACKAGE_NAME);
println!("cargo:rustc-link-lib=framework=WebRTC");
} }
fn link_swift_stdlib() { fn link_swift_stdlib(swift_target: &SwiftTarget) {
let target = get_swift_target(); if swift_target.target.libraries_require_rpath {
if target.target.libraries_require_rpath {
panic!("Libraries require RPath! Change minimum MacOS value to fix.") panic!("Libraries require RPath! Change minimum MacOS value to fix.")
} }
target.paths.runtime_library_paths.iter().for_each(|path| { swift_target
println!("cargo:rustc-link-search=native={}", path); .paths
}); .runtime_library_paths
.iter()
.for_each(|path| {
println!("cargo:rustc-link-search=native={}", path);
});
}
fn link_webrtc_framework(swift_target: &SwiftTarget) {
let swift_out_dir_path = swift_target.out_dir_path();
println!("cargo:rustc-link-lib=framework=WebRTC");
println!(
"cargo:rustc-link-search=framework={}",
swift_out_dir_path.display()
);
let source_path = swift_out_dir_path.join("WebRTC.framework");
let target_path = PathBuf::from(env::var("OUT_DIR").unwrap()).join("../../../WebRTC.framework");
assert!(
Command::new("cp")
.arg("-r")
.args(&[&source_path, &target_path])
.status()
.unwrap()
.success(),
"could not copy WebRTC.framework from {:?} to {:?}",
source_path,
target_path
);
} }
fn get_swift_target() -> SwiftTarget { fn get_swift_target() -> SwiftTarget {
@ -93,3 +110,18 @@ fn get_swift_target() -> SwiftTarget {
serde_json::from_slice(&swift_target_info_str).unwrap() serde_json::from_slice(&swift_target_info_str).unwrap()
} }
const SWIFT_PACKAGE_NAME: &'static str = "LiveKitBridge";
fn swift_package_root() -> PathBuf {
env::current_dir().unwrap().join(SWIFT_PACKAGE_NAME)
}
impl SwiftTarget {
fn out_dir_path(&self) -> PathBuf {
swift_package_root()
.join(".build")
.join(&self.target.unversioned_triple)
.join(env::var("PROFILE").unwrap())
}
}