Added make to the build command.

This commit is contained in:
Paul Masurel
2016-05-01 16:03:13 +09:00
parent 56a543017d
commit d70a21f5b2

View File

@@ -1,6 +1,13 @@
extern crate gcc;
use std::process::Command;
fn main() {
Command::new("make")
.current_dir("cpp/SIMDCompressionAndIntersection")
.output()
.unwrap_or_else(|e| { panic!("Failed to make SIMDCompressionAndIntersection: {}", e) });
gcc::Config::new()
.cpp(true)
.flag("-std=c++11")