mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-25 13:16:11 +03:00
47 lines
1.2 KiB
Zig
47 lines
1.2 KiB
Zig
const HelpStrings = @This();
|
|
|
|
const std = @import("std");
|
|
const Config = @import("Config.zig");
|
|
|
|
/// The "helpgen" exe.
|
|
exe: *std.Build.Step.Compile,
|
|
|
|
/// The output path for the help strings.
|
|
output: std.Build.LazyPath,
|
|
|
|
pub fn init(b: *std.Build, cfg: *const Config) !HelpStrings {
|
|
const exe = b.addExecutable(.{
|
|
.name = "helpgen",
|
|
.root_source_file = b.path("src/helpgen.zig"),
|
|
.target = b.graph.host,
|
|
});
|
|
|
|
const help_config = config: {
|
|
var copy = cfg.*;
|
|
copy.exe_entrypoint = .helpgen;
|
|
break :config copy;
|
|
};
|
|
const options = b.addOptions();
|
|
try help_config.addOptions(options);
|
|
exe.root_module.addOptions("build_options", options);
|
|
|
|
const help_run = b.addRunArtifact(exe);
|
|
return .{
|
|
.exe = exe,
|
|
.output = help_run.captureStdOut(),
|
|
};
|
|
}
|
|
|
|
/// Add the "help_strings" import.
|
|
pub fn addImport(self: *const HelpStrings, step: *std.Build.Step.Compile) void {
|
|
self.output.addStepDependencies(&step.step);
|
|
step.root_module.addAnonymousImport("help_strings", .{
|
|
.root_source_file = self.output,
|
|
});
|
|
}
|
|
|
|
/// Install the help exe
|
|
pub fn install(self: *const HelpStrings) void {
|
|
self.exe.step.owner.installArtifact(self.exe);
|
|
}
|