16 lines
581 B
Zig
16 lines
581 B
Zig
//! The vfs-test test fixture as a binary package (docs/build-packages-plan.md):
|
|
//! this file names the binary and EXACTLY the modules its source imports —
|
|
//! the shared recipe and the module-to-domain map live in build-support.
|
|
|
|
const std = @import("std");
|
|
const build_support = @import("build-support");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const exe = build_support.userBinary(b, .{
|
|
.name = "vfs-test",
|
|
.root_source_file = b.path("vfs-test.zig"),
|
|
.imports = &.{ "file-system", "logging", "process", "time" },
|
|
});
|
|
b.installArtifact(exe);
|
|
}
|