diff options
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ pub fn build(b: *std.Build) void { .target = target, .optimize = optimize, }); - //b.installArtifact(unit_tests); // Useful if you want to debug the test binary with lldb or something + b.installArtifact(unit_tests); // Useful if you want to debug the test binary with lldb or something const run_unit_tests = b.addRunArtifact(unit_tests); const test_step = b.step("test", "Run unit tests"); |