blip_buf-sys 0.1.2

FFI bindings to blip_buf.c
Documentation
1
2
3
4
5
6
7
8
extern crate gcc;

use std::env;

fn main() {
    gcc::compile_library("libblip_buf.a", &["blip_buf.c"]);
    println!("cargo:root={}", env::var("OUT_DIR").unwrap());
}