pkg/utfcpp

This commit is contained in:
Mitchell Hashimoto
2024-02-04 16:14:11 -08:00
parent 626d4170fe
commit 120273aa1a
14 changed files with 91 additions and 1478 deletions

62
pkg/utfcpp/build.zig Normal file
View File

@@ -0,0 +1,62 @@
const std = @import("std");
pub fn build(b: *std.Build) !void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const upstream = b.dependency("utfcpp", .{});
const module = b.addModule("utfcpp", .{
.root_source_file = .{ .path = "main.zig" },
.target = target,
.optimize = optimize,
});
const lib = b.addStaticLibrary(.{
.name = "utfcpp",
.target = target,
.optimize = optimize,
});
lib.linkLibCpp();
lib.addIncludePath(upstream.path(""));
module.addIncludePath(upstream.path(""));
if (target.result.isDarwin()) {
const apple_sdk = @import("apple_sdk");
try apple_sdk.addPaths(b, &lib.root_module);
try apple_sdk.addPaths(b, module);
}
var flags = std.ArrayList([]const u8).init(b.allocator);
defer flags.deinit();
try flags.appendSlice(&.{});
lib.addCSourceFiles(.{
.flags = flags.items,
.files = &.{"empty.cc"},
});
lib.installHeadersDirectoryOptions(.{
.source_dir = upstream.path("source"),
.install_dir = .header,
.install_subdir = "",
.include_extensions = &.{".h"},
});
b.installArtifact(lib);
{
const test_exe = b.addTest(.{
.name = "test",
.root_source_file = .{ .path = "main.zig" },
.target = target,
.optimize = optimize,
});
test_exe.linkLibrary(lib);
var it = module.import_table.iterator();
while (it.next()) |entry| test_exe.root_module.addImport(entry.key_ptr.*, entry.value_ptr.*);
const tests_run = b.addRunArtifact(test_exe);
const test_step = b.step("test", "Run tests");
test_step.dependOn(&tests_run.step);
}
}

13
pkg/utfcpp/build.zig.zon Normal file
View File

@@ -0,0 +1,13 @@
.{
.name = "utfcpp",
.version = "4.0.5",
.paths = .{""},
.dependencies = .{
.utfcpp = .{
.url = "https://github.com/nemtrif/utfcpp/archive/refs/tags/v4.0.5.tar.gz",
.hash = "1220d4d18426ca72fc2b7e56ce47273149815501d0d2395c2a98c726b31ba931e641",
},
.apple_sdk = .{ .path = "../apple-sdk" },
},
}

2
pkg/utfcpp/empty.cc Normal file
View File

@@ -0,0 +1,2 @@
// Needed for Zig build to be happy
void ghostty_utfcpp_stub() {}

0
pkg/utfcpp/main.zig Normal file
View File