dace 0.2.1

Rust wrapper of DACE, the Differential Algebra Computational Toolbox.
Documentation
1
2
3
4
5
6
7
8
9
10
use cmake;

fn main() {

    let dst = cmake::build("dacecore");

    println!("cargo:rerun-if-changed=dacecore");
    println!("cargo:rustc-link-search=native={}/lib", dst.display());
    println!("cargo:rustc-link-lib=static=dacecore");
}