summaryrefslogtreecommitdiffstats
path: root/vendor/windows_x86_64_msvc/build.rs
blob: c51c8caa8169e9d99de005d1f1845ef3c1ecb434 (plain)
1
2
3
4
5
6
7
8
9
10
fn main() {
    let target = std::env::var("TARGET").unwrap();
    if target != "x86_64-pc-windows-msvc" && target != "x86_64-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());
}