confgen/build.zig

93 lines
2.8 KiB
Zig

const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const confgenfs = b.option(
bool,
"confgenfs",
"Build and install confgenfs",
) orelse true;
const zig_args = b.dependency("zig_args", .{
.target = target,
.optimize = optimize,
}).module("args");
const libcg = b.createModule(.{
.root_source_file = b.path("libcg/main.zig"),
.link_libc = true,
.target = target,
.optimize = optimize,
});
// required for luajit errors
libcg.unwind_tables = true;
libcg.linkSystemLibrary("luajit", .{});
const confgen_exe = b.addExecutable(.{
.name = "confgen",
.root_source_file = b.path("confgen/main.zig"),
.target = target,
.optimize = optimize,
});
confgen_exe.root_module.addImport("args", zig_args);
confgen_exe.root_module.addImport("libcg", libcg);
b.installArtifact(confgen_exe);
b.installDirectory(.{
.source_dir = b.path("share"),
.install_dir = .{ .custom = "share" },
.install_subdir = ".",
});
const run_confgen_cmd = b.addRunArtifact(confgen_exe);
run_confgen_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_confgen_cmd.addArgs(args);
}
const run_confgen_step = b.step("run-confgen", "Run the confgen binary");
run_confgen_step.dependOn(&run_confgen_cmd.step);
const exe_confgen_tests = b.addTest(.{
.root_source_file = b.path("confgen/main.zig"),
.link_libc = true,
.target = target,
.optimize = optimize,
});
exe_confgen_tests.root_module.addImport("args", zig_args);
exe_confgen_tests.root_module.addImport("libcg", libcg);
if (confgenfs) {
const confgenfs_exe = b.addExecutable(.{
.name = "confgenfs",
.root_source_file = b.path("confgenfs/main.zig"),
.link_libc = true,
.target = target,
.optimize = optimize,
});
confgenfs_exe.root_module.addImport("args", zig_args);
confgenfs_exe.root_module.addImport("libcg", libcg);
confgenfs_exe.linkSystemLibrary("fuse3");
b.installArtifact(confgenfs_exe);
const run_confgenfs_cmd = b.addRunArtifact(confgenfs_exe);
run_confgenfs_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_confgenfs_cmd.addArgs(args);
}
const run_confgenfs_step = b.step("run-confgenfs", "Run the confgenfs binary");
run_confgenfs_step.dependOn(&run_confgenfs_cmd.step);
}
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&b.addRunArtifact(exe_confgen_tests).step);
}