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