code-examples/current/algorithms/numbers-zig/build.zig

12 lines
242 B
Zig
Raw Normal View History

2025-01-31 10:46:43 +00:00
const std = @import("std");
pub fn build(b: *std.Build) void {
const exe = b.addExecutable(.{
.name = "numbers",
.root_source_file = b.path("numbers.zig"),
.target = b.host,
});
b.installArtifact(exe);
}