build.rs 171 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
use std::env;

fn main() {
  println!(
    "cargo:rustc-link-search=native={}",
    env::var("BUILD_DIR").unwrap()
  );
  println!("cargo:rustc-link-lib=static=model");
}