mirror of https://github.com/Wilfred/difftastic/
60 lines
2.0 KiB
Rust
60 lines
2.0 KiB
Rust
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
// Note: If this file does not exist, it is generated by `tree-sitter generate`.
|
|
|
|
fn main() {
|
|
let src_dir = std::path::Path::new("src");
|
|
|
|
let mut c_config = cc::Build::new();
|
|
c_config.include(&src_dir);
|
|
c_config
|
|
.flag_if_supported("-Wno-unused-const-variable")
|
|
.flag_if_supported("-Wno-unused-parameter")
|
|
.flag_if_supported("-Wno-unused-but-set-variable")
|
|
.flag_if_supported("-Wno-trigraphs");
|
|
let parser_path = src_dir.join("parser.c");
|
|
c_config.file(&parser_path);
|
|
|
|
// If your language uses an external scanner written in C,
|
|
// then include this block of code:
|
|
|
|
/*
|
|
let scanner_path = src_dir.join("scanner.c");
|
|
c_config.file(&scanner_path);
|
|
println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap());
|
|
*/
|
|
|
|
c_config.compile("parser");
|
|
println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap());
|
|
|
|
// If your language uses an external scanner written in C++,
|
|
// then include this block of code:
|
|
|
|
/*
|
|
let mut cpp_config = cc::Build::new();
|
|
cpp_config.cpp(true);
|
|
cpp_config.include(&src_dir);
|
|
cpp_config
|
|
.flag_if_supported("-Wno-unused-parameter")
|
|
.flag_if_supported("-Wno-unused-but-set-variable");
|
|
let scanner_path = src_dir.join("scanner.cc");
|
|
cpp_config.file(&scanner_path);
|
|
cpp_config.compile("scanner");
|
|
println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap());
|
|
*/
|
|
}
|