* Move binrz meson directives to binrz/ dir * Move rizin-shell-parser to a subproject * Move bochs to a meson subproject * Move rzqnx to meson subproject * Move winkd to a meson subproject * Move rzar to a meson subproject * Move rzw32dbg_wrap to a meson subproject * Move ptrace-wrap to a meson subproject * Move rzgdb to a meson subproject * Rename w32dbg_wrap to rzw32dbg_wrap * Update CODEOWNERS * Remove old references to shlr * Move shlr/heap stuff in core and remove shlr/arm * Move spp to a meson subproject * Remove last references to shlr * Remove use_webui option * Move include files directives to librz/include/meson.build * Move librz meson directives into librz/meson.build * Handle d/ directories inside the specific module meson.build * Move plugins listing to specific module meson.build * Move rzheap to its own subproject * Fix js linter and licenses * Use meson.override_dependency for all rz_ modules
40 lines
1.3 KiB
Rust
40 lines
1.3 KiB
Rust
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-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());
|
|
*/
|
|
}
|