34 lines
1.3 KiB
Zig
34 lines
1.3 KiB
Zig
//! The display 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 = "display",
|
|
.root_source_file = b.path("display.zig"),
|
|
.imports = &.{
|
|
"channel", "display-client", "display-protocol", "driver", "input-client", "ipc",
|
|
"logging", "memory", "scanout-protocol", "service", "thread", "time",
|
|
},
|
|
.threaded = true, // real atomics/TLS (docs/threading.md)
|
|
});
|
|
b.installArtifact(exe);
|
|
|
|
// Standalone `zig build test`; the root aggregate depends on this step.
|
|
const test_step = b.step("test", "Run the display unit tests");
|
|
for ([_][]const u8{
|
|
"compositor.zig", // Rect math + fill/composite/blit-tile
|
|
}) |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);
|
|
}
|
|
}
|