simple-fcl-sys 0.0.5

Raw bindings for the FCL library for use in simple-fcl
Documentation
extern crate bindgen;
extern crate cc;
extern crate pkg_config;

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

fn main() {
    if libaries_are_present() {
        build_code();
    }

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

fn libaries_are_present() -> bool {
    return grab_dependencies().is_ok();
}

fn grab_dependencies() -> Result<(), pkg_config::Error> {
    let fcl_version = pkg_config::probe_library("fcl")?.version;

    if (0..5).any(|v| fcl_version.starts_with(&format!("0.{}.", v))) {
        println!("cargo:rustc-link-lib=boost_system");
    }

    Ok(())
}

fn build_code() {
    cc::Build::new()
        .cpp(true)
        .file("wrapper.cpp")
        .compile("wrapper.a");
}