Skip to content

Commit 457cb5e

Browse files
authored
Minor changes to the build.zig files to prepare for Zig 0.11 (#1588)
1 parent 5996551 commit 457cb5e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

fiat-zig/build.zig

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fiat-zig/src/main.zig

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inversion/zig/build.zig

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pub fn build(b: *std.Build) void {
44
var main_tests = b.addTest(.{
55
.root_source_file = .{ .path = "inversion.zig" },
66
});
7-
7+
const run_main_tests = b.addRunArtifact(main_tests);
88
const test_step = b.step("test", "Run tests");
9-
test_step.dependOn(&main_tests.step);
9+
test_step.dependOn(&run_main_tests.step);
1010
}

0 commit comments

Comments
 (0)