7 lines
131 B
Rust
7 lines
131 B
Rust
fn main() {
|
|
cc::Build::new()
|
|
.cpp(true)
|
|
.file("src/runtime/lib.cc")
|
|
.compile("lib_runtime.a");
|
|
}
|