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