We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff3898 commit 8de9be8Copy full SHA for 8de9be8
.gitignore
@@ -1,2 +1 @@
1
target
2
-src/windows_sys.rs
build.rs
@@ -7,7 +7,6 @@ use std::path::Path;
7
pub fn main() {
8
match env::var("CARGO_CFG_TARGET_OS").unwrap_or_default().as_str() {
9
"android" => build_android(),
10
- "windows" => build_windows(),
11
_ => {}
12
}
13
@@ -54,8 +53,3 @@ fn build_android() {
54
53
println!("cargo:rustc-cfg=feature=\"dl_iterate_phdr\"");
55
56
57
-
58
-fn build_windows() {
59
- let args = ["--etc", "bindings.txt"];
60
- windows_bindgen::bindgen(args).unwrap();
61
-}
0 commit comments