mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 00:06:09 +03:00
8 lines
182 B
Zig
8 lines
182 B
Zig
const builtin = @import("builtin");
|
|
|
|
pub usingnamespace @cImport({
|
|
@cInclude("hb.h");
|
|
@cInclude("hb-ft.h");
|
|
if (builtin.os.tag == .macos) @cInclude("hb-coretext.h");
|
|
});
|