21 lines
600 B
Rust
21 lines
600 B
Rust
use std::env;
|
|
use std::path::PathBuf;
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed=src/wrapper.h");
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
|
|
println!("cargo:rustc-link-lib=sane");
|
|
|
|
let bindings = bindgen::Builder::default()
|
|
.header("src/wrapper.h")
|
|
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
|
|
.generate()
|
|
.expect("Unable to generate bindings to SANE");
|
|
|
|
let out_path = PathBuf::from(env::var_os("OUT_DIR").unwrap());
|
|
bindings
|
|
.write_to_file(out_path.join("bindings.rs"))
|
|
.expect("Couldn't write SANE bindings");
|
|
}
|