windows_i686_msvc 0.28.0

Code gen support for the windows crate
Documentation
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());
}