19 lines
659 B
Zig
19 lines
659 B
Zig
//! The pci-bus 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 = "pci-bus",
|
|
.root_source_file = b.path("pci-bus.zig"),
|
|
.imports = &.{
|
|
"device-manager-protocol", "driver", "ipc", "logging", "memory", "pci-class",
|
|
"process", "service",
|
|
},
|
|
});
|
|
b.installArtifact(exe);
|
|
}
|