34 lines
1.2 KiB
Zig
34 lines
1.2 KiB
Zig
//! The fat service as a binary package (docs/build-packages-plan.md):
|
|
//! this file names the binary and EXACTLY the modules its source imports —
|
|
//! build-support resolves each name from the domains this zon declares.
|
|
|
|
const std = @import("std");
|
|
const build_support = @import("build-support");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const exe = build_support.userBinary(b, .{
|
|
.name = "fat",
|
|
.root_source_file = b.path("fat.zig"),
|
|
.imports = &.{
|
|
"block", "file-system", "ipc", "logging", "memory", "process", "service", "time",
|
|
"vfs-protocol",
|
|
},
|
|
});
|
|
b.installArtifact(exe);
|
|
|
|
// Standalone `zig build test`; the root aggregate depends on this step.
|
|
const test_step = b.step("test", "Run the fat unit tests");
|
|
for ([_][]const u8{
|
|
"on-disk.zig", // FAT on-disk struct sizes + type detection
|
|
"engine.zig", // FAT read/write over a RAM-backed image
|
|
}) |test_root| {
|
|
const unit_tests = b.addTest(.{
|
|
.root_module = b.createModule(.{
|
|
.root_source_file = b.path(test_root),
|
|
.target = b.resolveTargetQuery(.{}),
|
|
}),
|
|
});
|
|
test_step.dependOn(&b.addRunArtifact(unit_tests).step);
|
|
}
|
|
}
|