From 647fa10c2cd331fe57bc9d80f87fb4ce273881cc Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 22 May 2024 21:27:40 +0200 Subject: [PATCH] fixup feat(vaxis): reset terminal state on panic with a custom panic handler --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index 70c71d0..d765650 100644 --- a/build.zig +++ b/build.zig @@ -250,6 +250,7 @@ pub fn build(b: *std.Build) void { exe.root_module.addImport("thespian", thespian_mod); exe.root_module.addImport("log", log_mod); exe.root_module.addImport("tracy", tracy_mod); + exe.root_module.addImport("renderer", renderer_mod); b.installArtifact(exe); const run_cmd = b.addRunArtifact(exe);