mirror of
https://github.com/ziex-dev/ziex.git
synced 2026-07-20 02:29:36 -06:00
11 lines
259 B
Zig
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;
|
|
}
|