oden/third-party/vendor/objc_exception/build.rs
2024-03-08 11:03:01 -08:00

7 lines
125 B
Rust

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