windows_i686_msvc 0.42.2

Import lib for Windows
Documentation
fn main() {
    let target = std::env::var("TARGET").unwrap();
    if target != "i686-pc-windows-msvc" && target != "i686-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());
}