Skip to content

Commit 8de9be8

Browse files
committed
Commit generated bindings
1 parent bff3898 commit 8de9be8

File tree

3 files changed

+892
-7
lines changed

3 files changed

+892
-7
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
target
2-
src/windows_sys.rs

build.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ use std::path::Path;
77
pub fn main() {
88
match env::var("CARGO_CFG_TARGET_OS").unwrap_or_default().as_str() {
99
"android" => build_android(),
10-
"windows" => build_windows(),
1110
_ => {}
1211
}
1312
}
@@ -54,8 +53,3 @@ fn build_android() {
5453
println!("cargo:rustc-cfg=feature=\"dl_iterate_phdr\"");
5554
}
5655
}
57-
58-
fn build_windows() {
59-
let args = ["--etc", "bindings.txt"];
60-
windows_bindgen::bindgen(args).unwrap();
61-
}

0 commit comments

Comments
 (0)