2019-11-21 11:00:26 +00:00
|
|
|
use bindgen;
|
|
|
|
|
|
|
|
use std::env;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
fn main() {
|
2019-11-23 11:13:41 +00:00
|
|
|
println!("cargo:rustc-link-lib=vlc");
|
2019-11-21 11:00:26 +00:00
|
|
|
println!("cargo:rerun-if-changed=wrapper.h");
|
|
|
|
|
|
|
|
let bindings = bindgen::Builder::default()
|
|
|
|
.header("wrapper.h")
|
|
|
|
// For no_std
|
|
|
|
.use_core()
|
|
|
|
// Use libc
|
|
|
|
.ctypes_prefix("libc")
|
|
|
|
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
|
|
|
|
.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!");
|
|
|
|
}
|