usd 0.0.2

The beginnings of rust bindings for USD
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    // Explicitly link to the usd cpp library. This should propagate upwards
    // to other libraries
    println!("cargo:rustc-link-lib={}", usd_cpp::LIB);
    println!("cargo:rustc-link-search={}", usd_cpp::LIBS);

    // Handle the embedded c++ code
    cpp_build::Config::new()
        .include(usd_cpp::INCLUDE)
        .flag("-std=c++14")
        .build("src/lib.rs");
}