known-folders/build.zig

8 lines
176 B
Zig
Raw Normal View History

const std = @import("std");
pub fn build(b: *std.Build) void {
2023-03-06 01:35:58 +08:00
_ = b.addModule("known-folders", .{
2024-01-03 12:21:46 +08:00
.root_source_file = .{ .path = "known-folders.zig" },
});
}