16 lines
277 B
Rust
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");
|
|
}
|