ufbx 0.10.1

Bindings for ufbx
Documentation
1
2
3
4
5
6
7
8
9
10
use cc;

fn main() {
    // Tell Cargo that if the given file changes, to rerun this build script.
    println!("cargo:rerun-if-changed=ufbx/ufbx.c");
    println!("cargo:rerun-if-changed=ufbx/ufbx.h");
    cc::Build::new()
        .file("ufbx/ufbx.c")
        .compile("ufbx");
}