13 lines
191 B
Rust
Executable File
13 lines
191 B
Rust
Executable File
extern crate cc;
|
|
|
|
|
|
fn main() {
|
|
let glue_path = "glue.c";
|
|
|
|
println!("cargo:rerun-if-changed={}", glue_path);
|
|
|
|
cc::Build::new()
|
|
.file(glue_path)
|
|
.compile("glue");
|
|
}
|