lua position, size, focus and z-index (not really)

This commit is contained in:
Harrison DiAmbrosio 2025-11-25 16:01:38 -05:00 committed by Squibid
parent 2c130539f6
commit 47bcce621d
Signed by: squibid
GPG key ID: BECE5684D3C4005D
14 changed files with 236 additions and 98 deletions

View file

@ -77,6 +77,18 @@ pub fn build(b: *std.Build) void {
b.installArtifact(mez);
const exe_check = b.addExecutable(.{
.name = "mez",
.root_module = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
})
});
const check = b.step("check", "check if mez compiles");
check.dependOn(&exe_check.step);
const run_step = b.step("run", "Run the app");
const run_cmd = b.addRunArtifact(mez);
run_step.dependOn(&run_cmd.step);