mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 00:06:09 +03:00
54 lines
1.5 KiB
Zig
54 lines
1.5 KiB
Zig
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 lib = b.addStaticLibrary(.{
|
|
.name = "utfcpp",
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
lib.linkLibCpp();
|
|
lib.addIncludePath(upstream.path(""));
|
|
|
|
if (target.result.isDarwin()) {
|
|
const apple_sdk = @import("apple_sdk");
|
|
try apple_sdk.addPaths(b, &lib.root_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.installHeadersDirectory(
|
|
upstream.path("source"),
|
|
"",
|
|
.{ .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);
|
|
// }
|
|
}
|