yet-another-pomf-clone/build.zig

37 lines
1.2 KiB
Zig
Raw Permalink Normal View History

2021-04-09 20:57:18 +00:00
const std = @import("std");
2021-04-09 21:02:31 +00:00
const deps = @import("./deps.zig");
2021-04-09 20:57:18 +00:00
pub fn build(b: *std.build.Builder) void {
// Standard target options allows the person running `zig build` to choose
// what target to build for. Here we do not override the defaults, which
// means any target is allowed, and the default is native. Other options
// for restricting supported target set are available.
const target = b.standardTargetOptions(.{});
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
const mode = b.standardReleaseOptions();
const exe = b.addExecutable("yet-another-pomf-clone", "src/main.zig");
exe.setTarget(target);
exe.setBuildMode(mode);
2021-04-09 21:02:31 +00:00
deps.addAllTo(exe);
2021-04-09 20:57:18 +00:00
exe.install();
2021-04-13 02:19:06 +00:00
const exe_test = b.addTest("src/main.zig");
exe_test.setTarget(target);
deps.addAllTo(exe_test);
2021-04-09 20:57:18 +00:00
const run_cmd = exe.run();
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
2021-04-13 02:19:06 +00:00
const test_step = b.step("test", "Test stuff");
test_step.dependOn(&exe_test.step);
2021-04-09 20:57:18 +00:00
}