Clean up build script
This commit is contained in:
parent
9c87d70659
commit
65afe9dd29
8
build.rs
8
build.rs
@ -1,15 +1,17 @@
|
|||||||
fn main() {
|
fn main() {
|
||||||
let src_dir = std::path::Path::new("tree-sitter-dust/src");
|
let src_dir = std::path::Path::new("tree-sitter-dust/src");
|
||||||
|
|
||||||
let mut c_config = cc::Build::new();
|
let mut c_config = cc::Build::new();
|
||||||
|
|
||||||
c_config.include(src_dir);
|
c_config.include(src_dir);
|
||||||
c_config
|
c_config
|
||||||
.flag_if_supported("-Wno-unused-parameter")
|
.flag_if_supported("-Wno-unused-parameter")
|
||||||
.flag_if_supported("-Wno-unused-but-set-variable")
|
.flag_if_supported("-Wno-unused-but-set-variable")
|
||||||
.flag_if_supported("-Wno-trigraphs");
|
.flag_if_supported("-Wno-trigraphs");
|
||||||
let parser_path = src_dir.join("parser.c");
|
|
||||||
c_config.file(&parser_path);
|
|
||||||
|
|
||||||
|
let parser_path = src_dir.join("parser.c");
|
||||||
|
|
||||||
|
c_config.file(&parser_path);
|
||||||
c_config.compile("parser");
|
c_config.compile("parser");
|
||||||
|
|
||||||
println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap());
|
println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user