forked from GNOME/pango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
56 lines (46 loc) · 1.54 KB
/
meson_options.txt
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
option('documentation',
type: 'boolean',
value: false,
description : 'Build API reference')
option('gtk_doc',
type: 'boolean',
value: false,
description: 'Build API reference',
deprecated: 'documentation')
option('introspection',
type: 'feature',
value: 'auto',
yield: true,
description: 'Build the introspection data (requires gobject-introspection)')
option('build-testsuite',
description : 'Build the test suite',
type: 'boolean',
value: true)
option('build-examples',
description : 'Build example test programs',
type: 'boolean',
value: true)
option('fontconfig',
description : 'Build with FontConfig support. Passing \'auto\' or \'disabled\' disables fontconfig where it is optional, i.e. on Windows and macOS. Passing \'disabled\' on platforms where fontconfig is required results in error.',
type: 'feature',
value: 'auto')
option('sysprof',
type : 'feature',
value : 'disabled',
description : 'Include tracing support for sysprof')
option('libthai',
type : 'feature',
value : 'auto',
description : 'Build with libthai support')
option('cairo',
type : 'feature',
value : 'enabled',
description : 'Build with cairo support')
option('xft',
type : 'feature',
value : 'auto',
description : 'Build with xft support')
option('freetype',
type : 'feature',
value : 'auto',
description : 'Build with freetype support')