use std::{env, path::PathBuf};
fn main() {
if cfg!(not(target_os = "linux")) {
return;
}
cc::Build::new()
.file("instrument-hooks/dist/core.c")
.include("instrument-hooks/includes")
.flag("-w") .compile("instrument_hooks");
let bindings = bindgen::Builder::default()
.header("instrument-hooks/includes/core.h")
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
.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!");
}