Skip to content

Commit

Permalink
Make build.zig files compatible with newly released zig 0.12 (#1913)
Browse files Browse the repository at this point in the history
Fixes #1912
  • Loading branch information
jedisct1 committed May 20, 2024
1 parent 2f00603 commit a1cfdca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fiat-zig/build.zig

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

2 changes: 1 addition & 1 deletion inversion/zig/build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const std = @import("std");

pub fn build(b: *std.Build) void {
const main_tests = b.addTest(.{
.root_source_file = .{ .path = "inversion.zig" },
.root_source_file = b.path("inversion.zig"),
});
const run_main_tests = b.addRunArtifact(main_tests);
const test_step = b.step("test", "Run tests");
Expand Down

0 comments on commit a1cfdca

Please sign in to comment.