pnmixer-rust/build.rs

6 lines
87 B
Rust
Raw Normal View History

2017-06-26 07:08:37 +00:00
extern crate gcc;
fn main() {
gcc::compile_library("libxpm.a", &["src/xpm.c"]);
}