Weakly link ReplayKit to ensure this library can be used on macOS 10.15

This commit is contained in:
Antonio Scandurra 2022-11-08 13:44:31 +01:00
parent 1d6af4cf20
commit c183e854d7

View file

@ -44,6 +44,9 @@ fn main() {
// Register exported Objective-C selectors, protocols, etc when building example binaries.
println!("cargo:rustc-link-arg=-Wl,-ObjC");
// Weakly link ReplayKit to ensure this library can be used on macOS 10.15+.
println!("cargo:rustc-link-arg=-Wl,-weak_framework ReplayKit");
}
}