Files
neovim/deps/utf8proc/build.zig
2026-04-21 11:18:43 +02:00

30 lines
835 B
Zig

const std = @import("std");
pub fn build(b: *std.Build) !void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const lib = b.addLibrary(.{
.name = "utf8proc",
.linkage = .static,
.root_module = b.createModule(.{
.target = target,
.optimize = optimize,
}),
});
if (b.lazyDependency("utf8proc", .{})) |upstream| {
var root_module = lib.root_module;
root_module.addIncludePath(upstream.path(""));
lib.installHeader(upstream.path("utf8proc.h"), "utf8proc.h");
root_module.link_libc = true;
root_module.addCSourceFiles(.{ .root = upstream.path(""), .files = &.{
"utf8proc.c",
}, .flags = &.{"-DUTF8PROC_STATIC"} });
}
b.installArtifact(lib);
}