zig-args/build.zig.zon
Sean cfe9bac298 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
2024-04-26 16:58:27 +02:00

12 lines
200 B
Text

.{
.name = "zig-args",
.version = "0.0.0",
.minimum_zig_version = "0.12.0",
.paths = .{
"args.zig",
"demo.zig",
"demo_verb.zig",
"build.zig",
},
}