Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ pub fn build(b: *std.Build) !void {
// All our steps which we'll hook up later. The steps are shown
// up here just so that they are more self-documenting.
const libvt_step = b.step("lib-vt", "Build libghostty-vt");
const cli_helper_step = b.step("cli-helper", "Build the Ghostty CLI helper");
const run_step = b.step("run", "Run the app");
const run_valgrind_step = b.step(
"run-valgrind",
Expand All @@ -61,6 +62,7 @@ pub fn build(b: *std.Build) !void {

// Ghostty executable, the actual runnable Ghostty program.
const exe = try buildpkg.GhosttyExe.init(b, &config, &deps);
cli_helper_step.dependOn(&exe.install_step.step);

// Ghostty docs
const docs = try buildpkg.GhosttyDocs.init(b, &deps);
Expand Down
Loading
Loading