-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmeson_options.txt
49 lines (40 loc) · 1.15 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
option('dinit',
type: 'feature', value: 'enabled',
description: 'Whether to install Dinit-related backend and data'
)
option('runit',
type: 'feature', value: 'disabled',
description: 'Whether to install runit-related backend and data'
)
option('default_backend',
type: 'string', value: '',
description: 'Override the default backend'
)
option('rundir',
type: 'string', value: '/run',
description: 'Where the base directory will be located'
)
option('statedir',
type: 'string', value: 'lib/turnstiled',
description: 'The state directory relative to localstatedir'
)
option('pamdir',
type: 'string', value: '',
description: 'Override the path where PAM files go'
)
option('pam_moddir',
type: 'string', value: '',
description: 'Where to install the PAM module (leave empty to autodetect)'
)
option('manage_rundir',
type: 'boolean', value: false,
description: 'Whether to manage rundir by default'
)
option('man',
type: 'boolean', value: true,
description: 'Whether to generate manpages'
)
option('library',
type: 'feature', value: 'disabled',
description: 'Whether to build the library'
)