-
Notifications
You must be signed in to change notification settings - Fork 857
Expand file tree
/
Copy pathmeson_options.txt
More file actions
52 lines (51 loc) · 1.27 KB
/
meson_options.txt
File metadata and controls
52 lines (51 loc) · 1.27 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
option('docs',
type: 'boolean',
value: false,
description: 'Build the API references (requires gtk-doc)'
)
option('deprecated_warnings',
type: 'boolean',
value: false,
description: 'Show build warnings for deprecations'
)
option('build_recorder',
type: 'boolean',
value: true,
description: 'Build the cinnamon recorder into source'
)
option('nm_agent',
type: 'combo',
choices: ['internal', 'external', 'disabled'],
value: 'internal',
description: 'Which network agent to use - internal: use built-in, external: require nm-applet in the session, disabled: not using NetworkManager'
)
option('py3modules_dir',
type : 'string',
value : '',
description: 'Where to install python3 modules'
)
option('wayland',
type : 'boolean',
value : true,
description: 'Enable wayland support'
)
option('exclude_info_settings',
type : 'boolean',
value : false,
description: 'Exclude Info settings'
)
option('exclude_users_settings',
type : 'boolean',
value : false,
description: 'Exclude Users settings'
)
option('pam_prefix',
type : 'string',
value : '',
description: 'Specify where pam files go'
)
option('use_debian_pam',
type : 'boolean',
value : false,
description: 'Use the debian pam file'
)