Files
Jörn-Michael Miehe 138eb57df2 Errata/typos
2019-08-19 10:31:37 +02:00

12 lines
298 B
Rust

extern crate cmake;
fn main() {
// Builds the project in the directory located in `libdouble`, installing it
// into $OUT_DIR
let dst = cmake::build("libdouble");
println!("cargo:rustc-link-search=native={}", dst.display());
println!("cargo:rustc-link-lib=static=double");
}