summaryrefslogtreecommitdiffstats
path: root/vendor/windows_x86_64_gnu/build.rs
blob: 7612e7935d52f380bfaadbd54370f952e4397b7c (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-gnu" && target != "x86_64-uwp-windows-gnu" {
        return;
    }

    let dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();

    println!("cargo:rustc-link-search=native={}", std::path::Path::new(&dir).join("lib").display());
}