зеркало из https://github.com/mozilla/gecko-dev.git
117 строки
3.5 KiB
Rust
117 строки
3.5 KiB
Rust
extern crate bindgen;
|
|
|
|
fn sdk_path(target: &str) -> Result<String, std::io::Error> {
|
|
// Use environment variable if set
|
|
println!("cargo:rerun-if-env-changed=COREAUDIO_SDK_PATH");
|
|
if let Ok(path) = std::env::var("COREAUDIO_SDK_PATH") {
|
|
return Ok(path);
|
|
}
|
|
|
|
use std::process::Command;
|
|
|
|
let sdk = if target.contains("apple-darwin") {
|
|
"macosx"
|
|
} else if target.contains("apple-ios") {
|
|
"iphoneos"
|
|
} else {
|
|
unreachable!();
|
|
};
|
|
let output = Command::new("xcrun")
|
|
.args(&["--sdk", sdk, "--show-sdk-path"])
|
|
.output()?
|
|
.stdout;
|
|
let prefix_str = std::str::from_utf8(&output).expect("invalid output from `xcrun`");
|
|
Ok(prefix_str.trim_end().to_string())
|
|
}
|
|
|
|
fn build(sdk_path: Option<&str>, target: &str) {
|
|
// Generate one large set of bindings for all frameworks.
|
|
//
|
|
// We do this rather than generating a module per framework as some frameworks depend on other
|
|
// frameworks and in turn share types. To ensure all types are compatible across each
|
|
// framework, we feed all headers to bindgen at once.
|
|
//
|
|
// Only link to each framework and include their headers if their features are enabled and they
|
|
// are available on the target os.
|
|
|
|
use std::env;
|
|
use std::path::PathBuf;
|
|
|
|
let mut headers = vec![];
|
|
|
|
#[cfg(feature = "audio_toolbox")]
|
|
{
|
|
println!("cargo:rustc-link-lib=framework=AudioToolbox");
|
|
headers.push("AudioToolbox/AudioToolbox.h");
|
|
}
|
|
|
|
#[cfg(feature = "audio_unit")]
|
|
{
|
|
println!("cargo:rustc-link-lib=framework=AudioUnit");
|
|
headers.push("AudioUnit/AudioUnit.h");
|
|
}
|
|
|
|
#[cfg(feature = "core_audio")]
|
|
{
|
|
println!("cargo:rustc-link-lib=framework=CoreAudio");
|
|
headers.push("CoreAudio/CoreAudio.h");
|
|
}
|
|
|
|
#[cfg(feature = "open_al")]
|
|
{
|
|
println!("cargo:rustc-link-lib=framework=OpenAL");
|
|
headers.push("OpenAL/al.h");
|
|
headers.push("OpenAL/alc.h");
|
|
}
|
|
|
|
#[cfg(all(feature = "core_midi"))]
|
|
{
|
|
if target.contains("apple-darwin") {
|
|
println!("cargo:rustc-link-lib=framework=CoreMIDI");
|
|
headers.push("CoreMIDI/CoreMIDI.h");
|
|
}
|
|
}
|
|
|
|
println!("cargo:rerun-if-env-changed=BINDGEN_EXTRA_CLANG_ARGS");
|
|
// Get the cargo out directory.
|
|
let out_dir = PathBuf::from(env::var("OUT_DIR").expect("env variable OUT_DIR not found"));
|
|
|
|
// Begin building the bindgen params.
|
|
let mut builder = bindgen::Builder::default();
|
|
|
|
builder = builder.clang_args(&[&format!("--target={}", target)]);
|
|
|
|
if let Some(sdk_path) = sdk_path {
|
|
builder = builder.clang_args(&["-isysroot", sdk_path]);
|
|
}
|
|
|
|
let meta_header: Vec<_> = headers
|
|
.iter()
|
|
.map(|h| format!("#include <{}>\n", h))
|
|
.collect();
|
|
|
|
builder = builder.header_contents("coreaudio.h", &meta_header.concat());
|
|
|
|
// Generate the bindings.
|
|
builder = builder
|
|
.trust_clang_mangling(false)
|
|
.derive_default(true);
|
|
|
|
let bindings = builder.generate().expect("unable to generate bindings");
|
|
|
|
// Write them to the crate root.
|
|
bindings
|
|
.write_to_file(out_dir.join("coreaudio.rs"))
|
|
.expect("could not write bindings");
|
|
}
|
|
|
|
fn main() {
|
|
let target = std::env::var("TARGET").unwrap();
|
|
if !(target.contains("apple-darwin") || target.contains("apple-ios")) {
|
|
panic!("coreaudio-sys requires macos or ios target");
|
|
}
|
|
|
|
let directory = sdk_path(&target).ok();
|
|
build(directory.as_ref().map(String::as_ref), &target);
|
|
}
|