9 lines
133 B
Rust
9 lines
133 B
Rust
extern crate cc;
|
|
|
|
fn main() {
|
|
cc::Build::new()
|
|
.file("src/util.cpp")
|
|
.cpp(true)
|
|
.compile("libutil.a");
|
|
}
|