gsp-rs 0.0.1

Rust bindings for the OpenGSP project
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {

    println!("cargo:rustc-link-search=native=../../../build/lib/Debug");

    // Tell Cargo to link to the `GSPCore` library
    println!("cargo:rustc-link-lib=dylib=GSPCore");

    println!("cargo:rerun-if-changed=../../../build/lib/Debug");

}