Skip to content

Commit

Permalink
Minor changes to the build.zig files to prepare for Zig 0.11 (#1588)
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Apr 18, 2023
1 parent 5996551 commit 457cb5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions fiat-zig/build.zig

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion fiat-zig/src/main.zig

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions inversion/zig/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pub fn build(b: *std.Build) void {
var main_tests = b.addTest(.{
.root_source_file = .{ .path = "inversion.zig" },
});

const run_main_tests = b.addRunArtifact(main_tests);
const test_step = b.step("test", "Run tests");
test_step.dependOn(&main_tests.step);
test_step.dependOn(&run_main_tests.step);
}

0 comments on commit 457cb5e

Please sign in to comment.