Skip to content

Commit 33851c7

Browse files
authored
Merge pull request ikskuh#9 from linusg/lazy-path
Update uses of LazyPath
2 parents 4d4794b + 33783d9 commit 33851c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ const std = @import("std");
22

33
pub fn build(b: *std.Build) void {
44
_ = b.addModule("any-pointer", .{
5-
.root_source_file = .{ .path = "any-pointer.zig" },
5+
.root_source_file = b.path("any-pointer.zig"),
66
});
77

88
const test_step = b.step("test", "Run library tests");
99

1010
const all_modes = std.enums.values(std.builtin.OptimizeMode);
1111
for (all_modes) |optimize| {
1212
const main_tests = b.addTest(.{
13-
.root_source_file = .{ .path = "tests.zig" },
13+
.root_source_file = b.path("tests.zig"),
1414
.optimize = optimize,
1515
});
1616

0 commit comments

Comments
 (0)