11 lines
297 B
Rust
11 lines
297 B
Rust
fn main() {
|
|
let target = std::env::var("TARGET").unwrap();
|
|
if target != "x86_64-pc-windows-gnullvm" {
|
|
return;
|
|
}
|
|
|
|
let dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
|
|
|
|
println!("cargo:rustc-link-search=native={}", std::path::Path::new(&dir).join("lib").display());
|
|
}
|