fixup feat(vaxis): reset terminal state on panic with a custom panic handler

This commit is contained in:
CJ van den Berg 2024-05-22 21:27:40 +02:00
parent 1d698afe55
commit 647fa10c2c

View file

@ -250,6 +250,7 @@ pub fn build(b: *std.Build) void {
exe.root_module.addImport("thespian", thespian_mod); exe.root_module.addImport("thespian", thespian_mod);
exe.root_module.addImport("log", log_mod); exe.root_module.addImport("log", log_mod);
exe.root_module.addImport("tracy", tracy_mod); exe.root_module.addImport("tracy", tracy_mod);
exe.root_module.addImport("renderer", renderer_mod);
b.installArtifact(exe); b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe); const run_cmd = b.addRunArtifact(exe);