bchlib-sys 0.2.1

Low-level Rust bindings for BCH encoding/decoding library, based on the bch_codec fork
Documentation
extern crate bindgen;
extern crate cc;

use std::env;
use std::path::PathBuf;

fn main() {
    cc::Build::new().file("src/bch/bch.c").compile("bch");

    let bindings = bindgen::Builder::default()
        .header("src/bch/bch.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!");
}