-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
55 lines (38 loc) · 1.88 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
# -*- mode: meson -*-
# Main options
option('cgroup-pattern', type: 'string', value: '',
description: 'CGroup pattern')
option('examples', type: 'boolean', value: 'true',
description: 'build and install examples')
option('init-script', type : 'array',
choices : ['systemd', 'sysvinit', 'upstart'], value : ['systemd'],
description : 'init script')
option('io-uring-event-loop', type: 'boolean', value: 'false',
description: 'Enable io-uring based event loop')
option('man', type: 'boolean', value: 'true',
description: 'build and install manpages')
option('pam-cgroup', type: 'boolean', value: 'false',
description: 'build and install the pam cgroup module')
option('tools', type: 'boolean', value: 'true',
description: 'build and install tools')
option('tests', type: 'boolean', value: 'false',
description: 'build and install tests')
# Paths
option('apparmor-cache-path', type: 'string', value: 'cache/lxc/apparmor',
description: 'AppArmor cache directory')
option('data-path', type: 'string', value: 'lib/lxc',
description: 'Container storage directory')
option('doc-path', type: 'string', value: 'doc/lxc',
description: 'Documentation directory')
option('global-config-path', type: 'string', value: 'lxc',
description: 'Global configuration directory')
option('log-path', type: 'string', value: 'log/lxc',
description: 'Loging directory')
option('rootfs-mount-path', type: 'string', value: 'lxc/rootfs',
description: 'Container rootfs mount directory')
option('runtime-path', type: 'string', value: '/run',
description: 'Main runtime directory')
option('usernet-config-path', type: 'string', value: 'lxc/lxc-usernet',
description: 'User network configuration file path')
option('usernet-db-path', type: 'string', value: 'lxc/nics',
description: 'User network database file path')