mirror of
https://github.com/ivabus/privod
synced 2024-11-10 02:25:19 +03:00
7 lines
158 B
Rust
7 lines
158 B
Rust
|
fn main() {
|
||
|
cc::Build::new()
|
||
|
.file("src/get_status.c")
|
||
|
.compile("get_status");
|
||
|
println!("cargo:rerun-if-changed=src/get_status.c");
|
||
|
}
|