mirror of
https://github.com/herdrdev/herdr.git
synced 2026-09-25 00:01:09 +00:00
9 lines
251 B
Zig
9 lines
251 B
Zig
const builtin = @import("builtin");
|
|
const build_options = @import("build_options");
|
|
|
|
pub const c = @cImport({
|
|
@cInclude("hb.h");
|
|
if (build_options.freetype) @cInclude("hb-ft.h");
|
|
if (build_options.coretext) @cInclude("hb-coretext.h");
|
|
});
|