uzn/build.zig

37 lines
946 B
Zig
Raw Permalink Normal View History

2024-04-20 06:05:30 -06:00
const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
2025-03-03 19:18:11 -07:00
const exe_mod = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
2024-04-20 06:05:30 -06:00
.target = target,
.optimize = optimize,
});
const exe = b.addExecutable(.{
2024-04-22 02:48:55 -06:00
.name = "uzn",
2025-03-03 19:18:11 -07:00
.root_module = exe_mod,
2024-04-20 06:05:30 -06:00
});
b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe);
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
2025-03-03 19:18:11 -07:00
2024-04-20 06:05:30 -06:00
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
const exe_unit_tests = b.addTest(.{
2025-03-03 19:18:11 -07:00
.root_module = exe_mod,
2024-04-20 06:05:30 -06:00
});
2025-03-03 19:18:11 -07:00
2024-04-20 06:05:30 -06:00
const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
2025-03-03 19:18:11 -07:00
2024-04-20 06:05:30 -06:00
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_exe_unit_tests.step);
}