rust-most/build.rs

14 lines
199 B
Rust
Raw Normal View History

2019-12-04 10:17:05 -08:00
use cc::Build;
use std::path::Path;
fn main() {
println!("Running build script");
let most_src = Path::new("vendor/most-5.1.0");
Build::new()
.include(most_src)
.compile("most");
}