-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathmeson_options.txt
79 lines (76 loc) · 2.68 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Optional features
option('docs',
type: 'combo',
choices: ['auto', 'true', 'false'],
value: 'auto',
description: 'build documentation'
)
option('gtk-doc',
type: 'boolean',
value: 'false',
description: 'build gtk-doc reference',
)
option('gi-docgen',
type: 'feature',
value: 'auto',
description: 'Build developer documentation (uses gi-docgen)'
)
option('workshop',
type: 'boolean',
value: 'false',
description: 'build experimental operations'
)
option('introspection',
type: 'combo',
choices: ['auto', 'true', 'false'],
value: 'auto',
description: 'gobject introspection .gir generation'
)
option('vapigen',
type: 'feature',
value: 'auto',
description: 'Vala .vapi generation - depends on introspection'
)
# Build settings
option('parallel-tests',
type: 'boolean',
value: 'true',
description: 'run tests in parallel or sequentially'
)
option('operation-test',
type: 'boolean',
value: 'false',
description: 'include gegl-tester in test suite'
)
# optional dependencies
option('gdk-pixbuf', type: 'feature', value: 'auto')
option('gexiv2', type: 'feature', value: 'auto')
option('graphviz', type: 'feature', value: 'auto')
option('jasper', type: 'feature', value: 'auto')
option('lcms', type: 'feature', value: 'auto')
option('lensfun', type: 'feature', value: 'auto')
option('libav', type: 'feature', value: 'auto')
option('libraw', type: 'feature', value: 'auto')
option('librsvg', type: 'feature', value: 'auto')
option('libspiro', type: 'feature', value: 'auto')
option('libtiff', type: 'feature', value: 'auto')
option('libv4l', type: 'feature', value: 'auto')
option('libv4l2', type: 'feature', value: 'auto')
option('lua', type: 'feature', value: 'auto')
option('mrg', type: 'feature', value: 'auto')
option('maxflow', type: 'feature', value: 'auto')
option('openexr', type: 'feature', value: 'auto')
option('openmp', type: 'feature', value: 'auto')
option('cairo', type: 'feature', value: 'auto')
option('pango', type: 'feature', value: 'auto')
option('pangocairo', type: 'feature', value: 'auto')
option('poppler', type: 'feature', value: 'auto')
option('pygobject', type: 'feature', value: 'auto')
option('sdl1', type: 'feature', value: 'disabled')
option('sdl2', type: 'feature', value: 'auto')
option('umfpack', type: 'feature', value: 'auto')
option('webp', type: 'feature', value: 'auto')
# obsolete - no effect
option('exiv2', type: 'feature', value: 'disabled')
option('libpng', type: 'feature', value: 'disabled')
option('libjpeg', type: 'feature', value: 'disabled')