dotfiles/scripts/mzteinit/build.zig

38 lines
1.1 KiB
Zig
Raw Normal View History

2022-09-08 17:03:54 +02:00
const std = @import("std");
2023-06-27 22:31:02 +02:00
const common = @import("build_common.zig");
2022-09-08 17:03:54 +02:00
2023-06-27 22:31:02 +02:00
pub fn build(b: *std.build.Builder) !void {
2022-09-08 17:03:54 +02:00
const target = b.standardTargetOptions(.{});
const mode = b.standardOptimizeOption(.{});
2022-09-08 17:03:54 +02:00
const exe = b.addExecutable(.{
.name = "mzteinit",
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = mode,
});
2022-09-08 17:03:54 +02:00
exe.strip = mode != .Debug;
2022-09-08 17:03:54 +02:00
exe.addModule("ansi-term", b.dependency("ansi_term", .{}).module("ansi-term"));
2022-09-08 17:03:54 +02:00
2023-06-27 22:31:02 +02:00
const cg_opt = try common.confgenGet(struct {
2023-06-27 23:20:35 +02:00
gtk_theme: []u8, // TODO: this being non-const is a workaround for an std bug
2023-06-27 22:31:02 +02:00
}, "../..", b.allocator);
const opts = b.addOptions();
opts.addOption([]const u8, "gtk_theme", cg_opt.gtk_theme);
exe.addOptions("opts", opts);
2023-04-17 21:29:15 +02:00
b.installArtifact(exe);
2022-09-08 17:03:54 +02:00
2023-04-17 21:29:15 +02:00
const run_cmd = b.addRunArtifact(exe);
2022-09-08 17:03:54 +02:00
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
}