mirror of
https://github.com/MezzalunaWM/Mezzaluna.git
synced 2026-03-08 04:57:32 -04:00
lua position, size, focus and z-index (not really)
This commit is contained in:
parent
2c130539f6
commit
47bcce621d
14 changed files with 236 additions and 98 deletions
12
build.zig
12
build.zig
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue