9 lines
198 B
Rust
9 lines
198 B
Rust
|
fn main() {
|
||
|
let dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
|
||
|
|
||
|
println!(
|
||
|
"cargo:rustc-link-search=native={}",
|
||
|
std::path::Path::new(&dir).join("lib").display()
|
||
|
);
|
||
|
}
|