diff options
Diffstat (limited to 'vendor/windows_x86_64_gnu/build.rs')
-rw-r--r-- | vendor/windows_x86_64_gnu/build.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/windows_x86_64_gnu/build.rs b/vendor/windows_x86_64_gnu/build.rs new file mode 100644 index 0000000..7612e79 --- /dev/null +++ b/vendor/windows_x86_64_gnu/build.rs @@ -0,0 +1,10 @@ +fn main() { + let target = std::env::var("TARGET").unwrap(); + if target != "x86_64-pc-windows-gnu" && target != "x86_64-uwp-windows-gnu" { + return; + } + + let dir = std::env::var("CARGO_MANIFEST_DIR").unwrap(); + + println!("cargo:rustc-link-search=native={}", std::path::Path::new(&dir).join("lib").display()); +} |