dotfiles/mzte-nv/build.zig

82 lines
2.3 KiB
Zig

const std = @import("std");
pub fn build(b: *std.build.Builder) !void {
const target = b.standardTargetOptions(.{});
if (target.os_tag orelse @import("builtin").os.tag == .windows)
// windows is an error in many ways
return error.Windows;
const mode = b.standardOptimizeOption(.{});
const lib = b.addSharedLibrary(.{
.name = "mzte-nv",
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = mode,
});
lib.linkLibC();
lib.linkSystemLibrary("luajit");
lib.strip = mode != .Debug;
lib.unwind_tables = true;
b.getInstallStep().dependOn(&(try InstallStep.init(b, lib)).step);
// this is the install step for the lua config compiler binary
const compiler = b.addExecutable(.{
.name = "mzte-nv-compile",
.root_source_file = .{ .path = "src/compiler.zig" },
.target = target,
.optimize = mode,
});
compiler.linkLibC();
compiler.linkSystemLibrary("luajit");
compiler.strip = mode != .Debug;
compiler.unwind_tables = true;
compiler.install();
}
const InstallStep = struct {
builder: *std.build.Builder,
step: std.build.Step,
lib: *std.build.LibExeObjStep,
fn init(builder: *std.build.Builder, lib: *std.build.LibExeObjStep) !*InstallStep {
const self = try builder.allocator.create(InstallStep);
self.* = .{
.builder = builder,
.lib = lib,
.step = std.build.Step.init(.custom, "install", builder.allocator, make),
};
self.step.dependOn(&lib.step);
return self;
}
fn make(step: *std.build.Step) anyerror!void {
const self = @fieldParentPtr(InstallStep, "step", step);
const plugin_install_dir = std.build.InstallDir{
.custom = "share/nvim",
};
const plugin_basename = "mzte-nv.so";
const dest_path = self.builder.getInstallPath(
plugin_install_dir,
plugin_basename,
);
try self.builder.updateFile(
self.lib.getOutputSource().getPath(self.builder),
dest_path,
);
// FIXME: the uninstall step doesn't do anything, despite this
self.builder.pushInstalledFile(plugin_install_dir, plugin_basename);
}
};