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/<Version>.tar.gz`, and the only requirement to do this is zig itself
This commit is contained in:
Sean 2024-04-25 17:27:16 -04:00 committed by Felix Queißner
parent 01d72b9a01
commit cfe9bac298

12
build.zig.zon Normal file
View file

@ -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",
},
}