windows_i686_gnu 0.52.6

Import lib for Windows
Documentation
1
2
3
4
5
6
7
8
fn main() {
    let dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();

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