diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/harfbuzz/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/harfbuzz/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/harfbuzz/vcpkg.json | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/vcpkg/ports/harfbuzz/vcpkg.json b/vcpkg/ports/harfbuzz/vcpkg.json new file mode 100644 index 0000000..86ec5ec --- /dev/null +++ b/vcpkg/ports/harfbuzz/vcpkg.json @@ -0,0 +1,91 @@ +{ + "name": "harfbuzz", + "version": "12.2.0", + "description": "HarfBuzz OpenType text shaping engine", + "homepage": "https://github.com/harfbuzz/harfbuzz", + "license": "MIT-Modern-Variant", + "supports": "!uwp", + "dependencies": [ + { + "name": "vcpkg-tool-meson", + "host": true + } + ], + "default-features": [ + "freetype" + ], + "features": { + "cairo": { + "description": "Enable Cairo graphics library support", + "dependencies": [ + { + "name": "cairo", + "default-features": false, + "features": [ + "freetype" + ] + } + ] + }, + "coretext": { + "description": "Enable CoreText shaper backend on macOS", + "supports": "osx" + }, + "directwrite": { + "description": "Enable DirectWrite support on Windows", + "supports": "windows" + }, + "experimental-api": { + "description": "Enable experimental api" + }, + "freetype": { + "description": "Enable FreeType support", + "dependencies": [ + { + "name": "freetype", + "default-features": false + } + ] + }, + "gdi": { + "description": "Enable GDI/Uniscribe support on Windows", + "supports": "windows" + }, + "glib": { + "description": "Glib Unicode callbacks support", + "dependencies": [ + "glib", + { + "name": "glib", + "host": true + } + ] + }, + "graphite2": { + "description": "Graphite2 shaper support", + "dependencies": [ + "graphite2" + ] + }, + "icu": { + "description": "icu support for harfbuzz", + "dependencies": [ + "icu" + ] + }, + "introspection": { + "description": "build with introspection", + "supports": "!static", + "dependencies": [ + "gobject-introspection", + { + "name": "harfbuzz", + "default-features": false, + "features": [ + "glib" + ] + } + ] + } + } +} |