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