Skip to content

Commit

Permalink
update to zig version 0.14.0-dev.716+38e0f049c
Browse files Browse the repository at this point in the history
  • Loading branch information
kdchambers committed Jul 31, 2024
1 parent d29ec52 commit 46bb85c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub fn build(b: *Build) void {

const unit_tests = b.addTest(.{
.name = "Unit Tests",
.root_source_file = .{ .path = "src/fontana.zig" },
.root_source_file = .{ .src_path = .{ .sub_path = "src/fontana.zig", .owner = b } },
.target = target,
.optimize = optimize,
});
Expand All @@ -17,7 +17,7 @@ pub fn build(b: *Build) void {
run_test_cmd.step.dependOn(b.getInstallStep());

_ = b.addModule("fontana", .{
.root_source_file = .{ .path = "src/fontana.zig" },
.root_source_file = .{ .src_path = .{ .sub_path = "src/fontana.zig", .owner = b } },
});

const test_step = b.step("test", "Run library tests");
Expand Down

0 comments on commit 46bb85c

Please sign in to comment.