Files
empidee/build.rs
T
oysteikt 81e2f73fda
Build and test / check (push) Successful in 56s
Build and test / docs (push) Successful in 1m21s
Build and test / test (push) Successful in 1m41s
Build and test / build (push) Successful in 2m0s
build.rs: fix lalrpop building in direnv
2026-06-21 15:48:59 +09:00

10 lines
232 B
Rust

fn main() {
// let debug_mode = std::env::var("PROFILE").unwrap() == "debug";
lalrpop::Configuration::new()
//.emit_comments(debug_mode)
// .generate_in_source_tree()
.process()
.unwrap();
}