-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeson_options.txt
More file actions
70 lines (67 loc) · 3.48 KB
/
meson_options.txt
File metadata and controls
70 lines (67 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# HarfBuzz feature options
option('glib', type: 'feature', value: 'auto',
description: 'Enable GLib unicode functions')
option('gobject', type: 'feature', value: 'auto',
description: 'Enable GObject bindings')
option('cairo', type: 'feature', value: 'auto',
description: 'Use Cairo graphics library')
option('chafa', type: 'feature', value: 'auto',
description: 'Use Chafa terminal graphics library')
option('png', type: 'feature', value: 'auto',
description: 'Use PNG library')
option('zlib', type: 'feature', value: 'auto',
description: 'Use zlib library')
option('icu', type: 'feature', value: 'auto',
description: 'Enable ICU library unicode functions')
option('graphite', type: 'feature', value: 'disabled',
description: 'Deprecated use graphite2 option instead')
option('graphite2', type: 'feature', value: 'disabled',
description: 'Enable Graphite2 complementary shaper')
option('freetype', type: 'feature', value: 'auto',
description: 'Enable freetype font backend')
option('fontations', type: 'feature', value: 'disabled',
description: 'Enable fontations font backend')
option('gdi', type: 'feature', value: 'disabled',
description: 'Enable GDI helpers and Uniscribe shaper backend on Windows')
option('directwrite', type: 'feature', value: 'disabled',
description: 'Enable DirectWrite shaper and font backend on Windows')
option('coretext', type: 'feature', value: 'disabled',
description: 'Enable CoreText shaper and font backend on Apple platforms')
option('harfrust', type: 'feature', value: 'disabled',
description: 'Enable HarfRust shaper backend')
option('kbts', type: 'feature', value: 'disabled',
description: 'Enable kb_text_shape backend')
option('wasm', type: 'feature', value: 'disabled',
description: 'Enable WebAssembly shaper backend (experimental)')
option('raster', type: 'feature', value: 'enabled',
description: 'Enable HarfBuzz glyph rasterization library')
option('vector', type: 'feature', value: 'enabled',
description: 'Enable HarfBuzz glyph vector drawing library')
option('subset', type: 'feature', value: 'enabled',
description: 'Enable HarfBuzz font subsetting and instancing library')
# Common feature options
option('tests', type: 'feature', value: 'enabled', yield: true,
description: 'Enable or disable unit tests')
option('introspection', type: 'feature', value: 'auto', yield: true,
description: 'Generate gobject-introspection bindings (.gir/.typelib files)')
option('docs', type: 'feature', value: 'auto', yield: true,
description: 'Generate documentation with gtk-doc')
option('doc_tests', type: 'boolean', value: false,
description: 'Run gtkdoc-check tests')
option('utilities', type: 'feature', value: 'enabled', yield: true,
description: 'Build harfbuzz utils')
option('benchmark', type: 'feature', value: 'disabled',
description: 'Enable benchmark tests')
option('icu_builtin', type: 'boolean', value: false,
description: 'Don\'t separate ICU support as harfbuzz-icu module')
option('with_libstdcxx', type: 'boolean', value: false,
description: 'Allow linking with libstdc++')
option('experimental_api', type: 'boolean', value: false,
description: 'Enable experimental APIs')
option('ragel_subproject', type: 'boolean', value: false,
description: 'Build Ragel subproject if no suitable version is found')
option('fuzzer_ldflags', type: 'string',
description: 'Extra LDFLAGS used during linking of fuzzing binaries')
# Install directory options
option('cmakepackagedir', type: 'string',
description: 'CMake package configuration install directory')