rust-most/build.rs
2019-12-05 03:19:41 -08:00

16 lines
277 B
Rust

use cc::Build;
use std::path::Path;
fn main() {
println!("Running build script");
let most_src = Path::new("vendor/most-5.1.0/src");
println!("Most src path: {}", most_src.display());
Build::new()
.files(most_src)
.include(most_src)
.compile("most");
}