Files
empidee/build.rs
T
oysteikt fb52fcc11e
Build and test / check (push) Failing after 38s
Build and test / build (push) Successful in 1m0s
Build and test / test (push) Successful in 1m50s
Build and test / docs (push) Successful in 4m5s
build.rs: fix lalrpop building in direnv
2026-06-21 14:48:16 +09:00

10 lines
230 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();
}