rust-ipfs/vendor/windows_aarch64_msvc/build.rs
Vladislav Tsarev 3dec7eeb01 Initial commit
2024-10-18 11:36:33 +03:00

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()
);
}