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