tapcp 0.1.0

An implementation of the TAPCP protocol for CASPER FPGA devices
Documentation
extern crate bindgen;

use std::{
    env,
    path::PathBuf,
};

fn main() {
    cc::Build::new()
        .file("vendor/csl.c")
        .pic(true)
        .compile("csl");
    println!("cargo:rerun-if-changed=wrapper.h");
    let bindings = bindgen::Builder::default()
        .header("wrapper.h")
        .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!");
}