Mitchell Hashimoto ea73edaf7f pkg/harfbuzz: fix c.zig
2024-08-16 15:38:18 -07:00

8 lines
177 B
Zig

const builtin = @import("builtin");
pub const c = @cImport({
@cInclude("hb.h");
@cInclude("hb-ft.h");
if (builtin.os.tag == .macos) @cInclude("hb-coretext.h");
});