chore: update to Zig 0.13.0

This commit is contained in:
LordMZTE 2024-06-21 19:00:15 +02:00
parent 669c9d2b12
commit a3c0d93779
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,2 +1,2 @@
zig-cache/
.zig-cache/
zig-out/

View file

@ -5,11 +5,11 @@ pub fn build(b: *std.Build) !void {
const optimize = b.standardOptimizeOption(.{});
_ = b.addModule("globlin", .{
.root_source_file = .{ .path = "src/glob.zig" },
.root_source_file = b.path("src/glob.zig"),
});
const test_exe = b.addTest(.{
.root_source_file = .{ .path = "src/glob.zig" },
.root_source_file = b.path("src/glob.zig"),
.target = target,
.optimize = optimize,
});