11 lines
200 B
Rust
11 lines
200 B
Rust
extern crate cc;
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed=src/runtime");
|
|
|
|
cc::Build::new()
|
|
.cpp(true)
|
|
.file("src/runtime/lib.cc")
|
|
.compile("runtime");
|
|
}
|