first-rust/build.rs
2024-11-22 17:48:52 -06:00

7 lines
191 B
Rust

fn main() {
// Tell Cargo to rerun if the c file is changed
println!("cargo:rerun-if-changed=src/test.c");
cc::Build::new()
.file("src/test.c")
.compile("test");
}