summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index b0ccd9d..dfc9dce 100644
--- a/build.zig
+++ b/build.zig
@@ -1,3 +1,6 @@
1pub fn build(b: *@import("std").Build) void { 1pub fn build(b: *@import("std").Build) void {
2 _ = b.addModule("xdg", .{ .root_source_file = .{ .path = "xdg.zig" } }); 2 _ = b.addModule("xdg", .{ .root_source_file = .{ .src_path = .{
3 .owner = b,
4 .sub_path = "xdg.zig",
5 } } });
3} 6}