diff options
| author | 2024-07-10 10:21:43 +0300 | |
|---|---|---|
| committer | 2024-07-10 10:21:43 +0300 | |
| commit | 85a545f4cebdcd2b0f976697fbf3450f78241046 (patch) | |
| tree | 6e8c320edbba1aa1189cdcd08f9f11259ec72315 | |
| parent | Update for zig 0.12.0 (diff) | |
| download | zig-xdg-6461549fb017bfcfcf9eece2672a8dcba671e9b0.tar.gz zig-xdg-6461549fb017bfcfcf9eece2672a8dcba671e9b0.tar.xz zig-xdg-6461549fb017bfcfcf9eece2672a8dcba671e9b0.zip | |
Update for zig 0.13.00.4.0
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | build.zig | 5 |
2 files changed, 6 insertions, 2 deletions
| @@ -1 +1,2 @@ | |||
| 1 | zig-cache/ | 1 | .DS_Store |
| 2 | .zig-cache/ | ||
| @@ -1,3 +1,6 @@ | |||
| 1 | pub fn build(b: *@import("std").Build) void { | 1 | pub 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 | } |