extern crate bindgen;
use std::env;
use std::path::PathBuf;
#[cfg(target_os = "linux")]
const INCLUDE_PATH: &str = "-I/usr/include/foundationdb/";
#[cfg(target_os = "macos")]
const INCLUDE_PATH: &str = "-I/usr/local/include/foundationdb/";
fn main() {
println!("cargo:rustc-link-lib=fdb_c");
let bindings = bindgen::Builder::default().clang_arg(INCLUDE_PATH)
.header("wrapper.h")
.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!");
}