-
Notifications
You must be signed in to change notification settings - Fork 48
/
meson_options.txt
54 lines (45 loc) · 1.41 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
# See devel-docs/compiling.rst for details on these options.
option('introspection',
type: 'feature',
value: 'auto',
yield: true,
description: 'Build introspection data (requires gobject-introspection)')
option('pixbuf',
type: 'feature',
value: 'auto',
yield: true,
description: 'Build with GDK-Pixbuf'
)
option('pixbuf-loader',
type: 'feature',
value: 'auto',
yield: true,
description: 'Build the GDK-Pixbuf SVG loader (requires gdk-pixbuf-query-loaders)'
)
option('docs',
type: 'feature',
value: 'auto',
yield: true,
description: 'Build API reference and rsvg-convert documentation (requires gi-docgen and rst2man)')
option('vala',
type: 'feature',
value: 'auto',
yield: true,
description: 'Build Vala bindings (requires the vala compiler)')
option('tests',
type: 'boolean',
value: true,
yield: true,
description: 'Build the test suite')
option('triplet',
type: 'string',
value: '',
description : 'Rust target triplet (if needed)')
option('avif',
type: 'feature',
value: 'auto',
description : 'Support embedded AVIF via libdav1d')
option('rustc-version',
type: 'string',
value: '',
description: 'Installed RustC version to use (if needed; currently only supported for Windows builds)')