Merge pull request #2052 from rockorager/pretty-print

cli/list-keybinds: add pretty printing
This commit is contained in:
Mitchell Hashimoto
2024-08-06 14:53:15 -07:00
committed by GitHub
4 changed files with 159 additions and 5 deletions

View File

@@ -1014,6 +1014,10 @@ fn addDeps(
.target = target,
.optimize = optimize,
});
const vaxis_dep = b.dependency("vaxis", .{
.target = target,
.optimize = optimize,
});
// Wasm we do manually since it is such a different build.
if (step.rootModuleTarget().cpu.arch == .wasm32) {
@@ -1093,6 +1097,7 @@ fn addDeps(
step.root_module.addImport("opengl", opengl_dep.module("opengl"));
step.root_module.addImport("pixman", pixman_dep.module("pixman"));
step.root_module.addImport("ziglyph", ziglyph_dep.module("ziglyph"));
step.root_module.addImport("vaxis", vaxis_dep.module("vaxis"));
// Mac Stuff
if (step.rootModuleTarget().isDarwin()) {