summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2024-07-10 10:21:43 +0300
committerGravatar Uko Kokņevičs2024-07-10 10:21:43 +0300
commit85a545f4cebdcd2b0f976697fbf3450f78241046 (patch)
tree6e8c320edbba1aa1189cdcd08f9f11259ec72315
parentUpdate for zig 0.12.0 (diff)
downloadzig-xdg-0.4.0.tar.gz
zig-xdg-0.4.0.tar.xz
zig-xdg-0.4.0.zip
Update for zig 0.13.00.4.0
-rw-r--r--.gitignore3
-rw-r--r--build.zig5
2 files changed, 6 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 3cef7be..a51802f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
1zig-cache/ 1.DS_Store
2.zig-cache/
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}