mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-12 04:52:53 +01:00
72 lines
2.5 KiB
Zig
72 lines
2.5 KiB
Zig
const std = @import("std");
|
|
const common = @import("common");
|
|
|
|
pub fn build(b: *std.Build) !void {
|
|
const target = b.standardTargetOptions(.{});
|
|
|
|
if (target.result.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 = b.path("src/main.zig"),
|
|
.target = target,
|
|
.optimize = mode,
|
|
});
|
|
|
|
const znvim_dep = b.dependency("znvim", .{ .target = target, .optimize = mode });
|
|
const common_dep = b.dependency("common", .{});
|
|
|
|
const cg_opt = try common.confgenGet(struct {
|
|
term_font: []u8, // TODO: this being non-const is a workaround for an std bug
|
|
nix: struct {
|
|
nvim_plugins: ?[:0]u8 = null,
|
|
tree_sitter_parsers: ?[:0]u8 = null,
|
|
nvim_tools: ?[:0]u8 = null,
|
|
jvm: ?[:0]u8 = null,
|
|
@"fennel.lua": ?[:0]u8 = null,
|
|
},
|
|
}, b.allocator);
|
|
|
|
const opts = b.addOptions();
|
|
opts.addOption([]const u8, "font", cg_opt.term_font);
|
|
opts.addOption(?[:0]const u8, "nvim_plugins", cg_opt.nix.nvim_plugins);
|
|
opts.addOption(?[:0]const u8, "tree_sitter_parsers", cg_opt.nix.tree_sitter_parsers);
|
|
opts.addOption(?[:0]const u8, "nvim_tools", cg_opt.nix.nvim_tools);
|
|
opts.addOption(?[:0]const u8, "jvm", cg_opt.nix.jvm);
|
|
opts.addOption(?[:0]const u8, "fennel.lua", cg_opt.nix.@"fennel.lua");
|
|
|
|
lib.root_module.addImport("opts", opts.createModule());
|
|
|
|
lib.root_module.addImport("common", common_dep.module("common"));
|
|
lib.root_module.addImport("nvim", znvim_dep.module("nvim_c"));
|
|
lib.root_module.addImport("znvim", znvim_dep.module("znvim"));
|
|
|
|
lib.linkLibC();
|
|
lib.linkSystemLibrary("luajit");
|
|
|
|
lib.root_module.unwind_tables = true;
|
|
|
|
b.getInstallStep().dependOn(&b.addInstallFile(lib.getEmittedBin(), "share/nvim/mzte-nv.so").step);
|
|
|
|
// this is the install step for the lua config compiler binary
|
|
const compiler = b.addExecutable(.{
|
|
.name = "mzte-nv-compile",
|
|
.root_source_file = b.path("src/compiler.zig"),
|
|
.target = target,
|
|
.optimize = mode,
|
|
});
|
|
|
|
compiler.linkLibC();
|
|
compiler.linkSystemLibrary("luajit");
|
|
|
|
compiler.root_module.addImport("opts", opts.createModule());
|
|
compiler.root_module.addImport("common", b.dependency("common", .{}).module("common"));
|
|
|
|
compiler.root_module.unwind_tables = true;
|
|
|
|
b.installArtifact(compiler);
|
|
}
|