Use new addModule syntax

This commit is contained in:
Yuri Pieters 2023-03-05 17:35:58 +00:00 committed by Felix Queißner
parent 53fe3b676f
commit d13ba61370

View File

@ -1,8 +1,7 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
b.addModule(.{
.name = "known-folders",
_ = b.addModule("known-folders", .{
.source_file = .{ .path = "known-folders.zig" },
});
}