[go: up one dir, main page]

windows_i686_msvc 0.23.0

Code gen support for the windows crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    if std::env::var("TARGET").unwrap() != "i686-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()
    );
}