abrasion/third_party/cargo/vendor/objc_exception-0.1.2/build.rs

8 lines
125 B
Rust
Raw Normal View History

2020-01-18 23:27:25 +00:00
extern crate cc;
fn main() {
cc::Build::new()
.file("extern/exception.m")
.compile("libexception.a");
}