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 4cfc291 commit 404d402Copy full SHA for 404d402
crates/iconv-sys/build.rs
@@ -76,6 +76,7 @@ fn main() {
76
.expect("Couldn't write bindings!");
77
}
78
79
+// no-op for not windows as not needed
80
#[cfg(not(windows))]
81
fn main() {
82
()
crates/iconv-sys/src/lib.rs
@@ -5,4 +5,6 @@
5
#![allow(non_camel_case_types)]
6
#![allow(non_snake_case)]
7
8
+// Only needed for Windows
9
+#[cfg(windows)]
10
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
0 commit comments