ziex/pkg/ui/build.zig
2026-06-15 12:06:12 +06:00

11 lines
259 B
Zig

const std = @import("std");
const ziex = @import("ziex");
pub fn build(b: *std.Build) void {
const tzx = ziex.addTranslateZx(b, .{
.root_source_file = b.path("component/root.zx"),
});
const ui_mod = tzx.addModule("ui");
_ = ui_mod;
}