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