nvapi_sys_new 0.1.5

Updated NVAPI bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    println!("cargo:rustc-link-search=./include/bin");
    if std::env::var("TARGET")
        .expect("Get build target CPU architecture")
        .starts_with("x86_64")
    {
        println!("cargo:rustc-link-lib=static=nvapi64");
    } else {
        println!("cargo:rustc-link-lib=static=nvapi");
    }
}