use std::{collections::HashSet, env, path::PathBuf};
fn main() {
generate_bindings();
compile_and_link_coco();
}
fn generate_bindings() {
println!("cargo:rerun-if-changed=wrapper.h");
let ignored_macros = IgnoreMacros(
[
"FP_INFINITE",
"FP_NAN",
"FP_NORMAL",
"FP_SUBNORMAL",
"FP_ZERO",
]
.into_iter()
.map(String::from)
.collect(),
);
let bindings = bindgen::Builder::default()
.header("wrapper.h")
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
.parse_callbacks(Box::new(ignored_macros))
.generate()
.expect("Unable to generate bindings");
let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
bindings
.write_to_file(out_path.join("bindings.rs"))
.expect("Couldn't write bindings!");
}
fn compile_and_link_coco() {
cc::Build::new()
.file("vendor/coco-prebuilt/coco.c")
.compile("coco");
}
#[derive(Debug)]
struct IgnoreMacros(HashSet<String>);
impl bindgen::callbacks::ParseCallbacks for IgnoreMacros {
fn will_parse_macro(&self, name: &str) -> bindgen::callbacks::MacroParsingBehavior {
if self.0.contains(name) {
bindgen::callbacks::MacroParsingBehavior::Ignore
} else {
bindgen::callbacks::MacroParsingBehavior::Default
}
}
}