This makes it possible to just type `cargo run` and always get the up to date client
6 lines
128 B
Rust
6 lines
128 B
Rust
fn main() {
|
|
println!("cargo:rerun-if-changed=nyx-wrapper.c");
|
|
|
|
cc::Build::new().file("nyx-wrapper.c").compile("nyx");
|
|
}
|