mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
6 lines
181 B
Rust
6 lines
181 B
Rust
|
fn main() {
|
||
|
cc::Build::new().file("src/bindings.c").compile("bindings");
|
||
|
println!("cargo:rustc-link-lib=dylib=icuuc");
|
||
|
println!("cargo:rustc-link-lib=dylib=icui18n");
|
||
|
}
|