gecko-dev/third_party/rust/objc_exception/build.rs

8 строки
125 B
Rust

extern crate cc;
fn main() {
cc::Build::new()
.file("extern/exception.m")
.compile("libexception.a");
}