6 lines
174 B
Rust
6 lines
174 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");
|
|
}
|