mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
9 lines
145 B
Rust
9 lines
145 B
Rust
|
|
fn main() {
|
|
println!("cargo::rerun-if-changed=src/main.c");
|
|
|
|
cc::Build::new()
|
|
.file("src/main.c")
|
|
.compile("lang_c");
|
|
}
|