fix: make sure to pass in optimize to exe in build.zig

This commit is contained in:
2025-11-12 17:18:45 -06:00
parent 08f56ef4e8
commit 497a62c16d

View File

@@ -39,6 +39,7 @@ pub fn build(b: *std.Build) void {
// Later on we'll use this module as the root module of a test executable // Later on we'll use this module as the root module of a test executable
// which requires us to specify a target. // which requires us to specify a target.
.target = target, .target = target,
.optimize = optimize,
}); });
// Here we define an executable. An executable needs to have a root module // Here we define an executable. An executable needs to have a root module