55 lines
1.5 KiB
Zig
55 lines
1.5 KiB
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
const exe = b.addExecutable(.{
|
|
.name = "dewpoint",
|
|
.root_source_file = b.path("src/main.zig"),
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
|
|
b.installArtifact(exe);
|
|
|
|
// Run
|
|
const run_cmd = b.addRunArtifact(exe);
|
|
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);
|
|
|
|
const fmt_step = b.step("fmt", "Run formatting checks");
|
|
|
|
const fmt = b.addFmt(.{
|
|
.paths = &.{
|
|
"src",
|
|
"build.zig",
|
|
},
|
|
.check = true,
|
|
});
|
|
fmt_step.dependOn(&fmt.step);
|
|
|
|
const check = b.step("check", "Check if program compiles");
|
|
const exe_check = b.addExecutable(.{
|
|
.name = exe.name,
|
|
.root_source_file = exe.root_module.root_source_file,
|
|
.target = target,
|
|
.optimize = std.builtin.OptimizeMode.Debug,
|
|
});
|
|
check.dependOn(&exe_check.step);
|
|
|
|
// Tests
|
|
const exe_unit_tests = b.addTest(.{
|
|
.root_source_file = b.path("src/main.zig"),
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
|
|
|
|
const test_step = b.step("test", "Run unit tests");
|
|
test_step.dependOn(&run_exe_unit_tests.step);
|
|
}
|