summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2023-07-04 03:17:50 +0300
committerGravatar Uko Kokņevičs2023-07-04 03:17:50 +0300
commit0102cd3c3ea6b5ad61e6afdc6de800621488c956 (patch)
tree8925b4c913e8f072c09cd96b8d4f8655cc088fe6
parentAdd support for getting config directories (diff)
downloadzig-xdg-0.2.1.tar.gz
zig-xdg-0.2.1.tar.xz
zig-xdg-0.2.1.zip
Add a build.zig file defining the module0.2.1
-rw-r--r--.gitignore1
-rw-r--r--build.zig3
2 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3cef7be
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
zig-cache/
diff --git a/build.zig b/build.zig
new file mode 100644
index 0000000..e02fa1e
--- /dev/null
+++ b/build.zig
@@ -0,0 +1,3 @@
1pub fn build(b: *@import("std").Build) void {
2 _ = b.addModule("xdg", .{ .source_file = .{ .path = "xdg.zig" } });
3}