Installation
Add zig-starter to your build.zig.zon:
zig fetch --save git+https://github.com/zig-utils/zig-starter
Then wire the module up in build.zig:
const starter = b.dependency("starter", .{
.target = target,
.optimize = optimize,
});
exe.root_module.addImport("starter", starter.module("starter"));
Requires Zig 0.15.1 or newer.
Or through Pantry:
pantry add zig-starter