1# HarfBuzz feature options 2option('glib', type: 'feature', value: 'auto', 3 description: 'Enable GLib unicode functions') 4option('gobject', type: 'feature', value: 'auto', 5 description: 'Enable GObject bindings') 6option('cairo', type: 'feature', value: 'auto', 7 description: 'Use Cairo graphics library') 8option('chafa', type: 'feature', value: 'auto', 9 description: 'Use Chafa terminal graphics library') 10option('icu', type: 'feature', value: 'auto', 11 description: 'Enable ICU library unicode functions') 12option('graphite', type: 'feature', value: 'disabled', 13 description: 'Enable Graphite2 complementary shaper') 14option('freetype', type: 'feature', value: 'auto', 15 description: 'Enable freetype interop helpers') 16option('gdi', type: 'feature', value: 'disabled', 17 description: 'Enable GDI helpers and Uniscribe shaper backend (Windows only)') 18option('directwrite', type: 'feature', value: 'disabled', 19 description: 'Enable DirectWrite shaper backend on Windows (experimental)') 20option('coretext', type: 'feature', value: 'disabled', 21 description: 'Enable CoreText shaper backend on macOS') 22 23# Common feature options 24option('tests', type: 'feature', value: 'enabled', yield: true, 25 description: 'Enable or disable unit tests') 26option('introspection', type: 'feature', value: 'auto', yield: true, 27 description: 'Generate gobject-introspection bindings (.gir/.typelib files)') 28option('docs', type: 'feature', value: 'auto', yield: true, 29 description: 'Generate documentation with gtk-doc') 30 31option('benchmark', type: 'feature', value: 'disabled', 32 description: 'Enable benchmark tests') 33option('icu_builtin', type: 'boolean', value: false, 34 description: 'Don\'t separate ICU support as harfbuzz-icu module') 35option('experimental_api', type: 'boolean', value: false, 36 description: 'Enable experimental APIs') 37option('fuzzer_ldflags', type: 'string', 38 description: 'Extra LDFLAGS used during linking of fuzzing binaries') 39