summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2024-02-02 17:56:27 +0200
committerGravatar Uko Kokņevičs2024-02-02 17:56:27 +0200
commit1e925ee081a4880ad895c3976bd6e1d1061a4040 (patch)
tree0719a7e345bdf53a52bdfc9f56f801e543a3e7e0 /build.zig
parentAdd a build.zig file defining the module (diff)
downloadzig-xdg-1e925ee081a4880ad895c3976bd6e1d1061a4040.tar.gz
zig-xdg-1e925ee081a4880ad895c3976bd6e1d1061a4040.tar.xz
zig-xdg-1e925ee081a4880ad895c3976bd6e1d1061a4040.zip
Update for latest zig
Diffstat (limited to '')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index e02fa1e..b0ccd9d 100644
--- a/build.zig
+++ b/build.zig
@@ -1,3 +1,3 @@
1pub fn build(b: *@import("std").Build) void { 1pub fn build(b: *@import("std").Build) void {
2 _ = b.addModule("xdg", .{ .source_file = .{ .path = "xdg.zig" } }); 2 _ = b.addModule("xdg", .{ .root_source_file = .{ .path = "xdg.zig" } });
3} 3}