Files
empidee/build.rs
T
oysteikt 14a3c55b8e
Build and test / check (push) Failing after 37s
Build and test / build (push) Successful in 59s
Build and test / docs (push) Successful in 1m15s
Build and test / test (push) Successful in 1m43s
build.rs: fix lalrpop building in direnv
2026-06-21 15:39:25 +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();
}