The Build Script
build.zig is a standard Zig program that describes how to compile your project. It's much more powerful than a Makefile.
zig pub fn build(b: *std.Build) void { const target = b.standardTargetOptions(.{}); const exe = b.addExecutable(.{ .name = "my-project", .root_source_file = .{ .path = "src/main.zig" }, .target = target, }); b.installArtifact(exe); }