14 lines
199 B
Rust
14 lines
199 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");
|
||
|
|
||
|
Build::new()
|
||
|
.include(most_src)
|
||
|
.compile("most");
|
||
|
}
|