From cfe9bac29885f60455ad29133e6311bd557cbff2 Mon Sep 17 00:00:00 2001 From: Sean <69403556+SeanTheGleaming@users.noreply.github.com> Date: Thu, 25 Apr 2024 17:27:16 -0400 Subject: [PATCH] Create build.zig.zon This makes zig-args compatible with the built in zig package system. What this means is that to add it to a project, now all you have to do is `zig fetch --save https://github.com/MasterQ32/zig-args/archive/.tar.gz`, and the only requirement to do this is zig itself --- build.zig.zon | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 build.zig.zon diff --git a/build.zig.zon b/build.zig.zon new file mode 100644 index 0000000..8e6993a --- /dev/null +++ b/build.zig.zon @@ -0,0 +1,12 @@ +.{ + .name = "zig-args", + .version = "0.0.0", + .minimum_zig_version = "0.12.0", + + .paths = .{ + "args.zig", + "demo.zig", + "demo_verb.zig", + "build.zig", + }, +}