-
Notifications
You must be signed in to change notification settings - Fork 10
/
meson_options.txt
30 lines (24 loc) · 981 Bytes
/
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
# Performance and debugging related options
option('profiling', type: 'boolean', value: false)
option('introspection', type: 'feature', value: 'auto')
option('vapi', type: 'boolean', value: true)
# Subproject
option('package_subdir',
type: 'string',
description: 'Subdirectory to append to all installed files, for use as subproject')
# Documentation
option('documentation',
type: 'boolean', value: false,
description: 'Whether to generate the API reference for libadwaita')
option('gtk_doc',
type: 'boolean', value: false,
description: 'Whether to generate the API reference for libadwaita',
deprecated: 'documentation')
# Tests
option('tests',
type: 'boolean', value: true,
description: 'Whether to compile unit tests')
# Demo and examples
option('examples',
type: 'boolean', value: true,
description: 'Build and install the examples and demo applications (currently not built for MSVC builds)')