7 lines
125 B
Rust
7 lines
125 B
Rust
extern crate cc;
|
|
|
|
fn main() {
|
|
cc::Build::new()
|
|
.file("extern/exception.m")
|
|
.compile("libexception.a");
|
|
}
|