Microkernel thing OS experiment (Zig ⚡)
at dev 258 B view raw
1const std = @import("std"); 2const build_helpers = @import("root.zig"); 3pub const Architecture = build_helpers.Architecture; 4 5pub fn build(b: *std.Build) void { 6 _ = b.addModule("build_helpers", .{ 7 .root_source_file = b.path("root.zig"), 8 }); 9}