pcan-basic-sys 0.2.0

Auto-generated Rust Bindings for The PCAN Basic API
Documentation
extern crate bindgen;

use std::env;
use std::path::PathBuf;
use std::process::Command;

fn main() {
    // Tell cargo to tell rustc to link the system bzip2
    // shared library.

    // The bindgen::Builder is the main entry point
    // to bindgen, and lets you build up options for
    // the resulting bindings.
    let bindings = bindgen::Builder::default()
        // Do not generate unstable Rust code that
        // requires a nightly rustc and enabling
        // unstable features.
        .no_unstable_rust()
        // The input header we would like to generate
        // bindings for.
        .header("PCANBasic.h")
        // Finish the builder and generate the bindings.
        .generate()
        // Unwrap the Result and panic on failure.
        .expect("Unable to generate bindings");

    // Write the bindings to the $OUT_DIR/bindings.rs file.
    let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
    bindings
        .write_to_file(out_path.join("bindings.rs"))
        .expect("Couldn't write bindings!");

    let out_dir = env::var("OUT_DIR").unwrap();

    // Create .lib file for windows
    if cfg!(windows) {
        let machine = if cfg!(target_arch = "x86") {
                "/Machine:X86"
            } else if cfg!(target_arch = "x86_64") {
                "/Machine:X64"
            } else {
                panic!("Unknown architecture");
            };


        let mut output_lib_path = PathBuf::from(&out_dir);
        output_lib_path.push("PCANBasic.lib");            
        Command::new("lib.exe")
            .args(&["/def:PCANBasic.def", &format!("/OUT:{}", output_lib_path.to_str().unwrap()), machine])
            .status().expect("Could not run lib.exe");
    }

    println!("cargo:rustc-link-lib=PCANBasic");
    println!("cargo:rustc-link-search=native={}", out_dir);

}