34 lines
1.3 KiB
Zig
34 lines
1.3 KiB
Zig
//! The virtio-gpu driver 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 = "virtio-gpu",
|
|
.root_source_file = b.path("virtio-gpu.zig"),
|
|
.imports = &.{
|
|
"display-protocol", "driver", "ipc", "logging", "memory", "mmio", "pci", "process",
|
|
"scanout-protocol", "service", "time",
|
|
},
|
|
});
|
|
b.installArtifact(exe);
|
|
|
|
// Standalone `zig build test`; the root aggregate depends on this step.
|
|
const test_step = b.step("test", "Run the virtio-gpu unit tests");
|
|
for ([_][]const u8{
|
|
"virtio-gpu-protocol.zig", // virtio-gpu command struct sizes
|
|
"virtio-pci.zig", // virtio 1.0 PCI transport struct sizes
|
|
}) |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);
|
|
}
|
|
}
|