David Venhoff e46e0fbacc Automatically build the client
This makes it possible to just type `cargo run` and always get the up to date client
2025-07-31 15:45:58 +02:00

6 lines
128 B
Rust

fn main() {
println!("cargo:rerun-if-changed=nyx-wrapper.c");
cc::Build::new().file("nyx-wrapper.c").compile("nyx");
}