]> git.proxmox.com Git - mirror_lxc.git/blob - meson_options.txt
meson: Add global config
[mirror_lxc.git] / meson_options.txt
1 # -*- mode: meson -*-
2
3 # Main options
4 option('cgroup-pattern', type: 'string', value: '',
5 description: 'CGroup pattern')
6
7 option('examples', type: 'boolean', value: 'true',
8 description: 'build and install examples')
9
10 option('init-script', type: 'combo',
11 choices: ['systemd', 'sysvinit', 'openrc', 'upstart'], value: 'systemd',
12 description: 'init script')
13
14 option('io-uring-event-loop', type: 'boolean', value: 'false',
15 description: 'Enable io-uring based event loop')
16
17 option('man', type: 'boolean', value: 'true',
18 description: 'build and install manpages')
19
20 option('tests', type: 'boolean', value: 'false',
21 description: 'build and install tests')
22
23 # Paths
24 option('apparmor-cache-path', type: 'string', value: 'cache/lxc/apparmor',
25 description: 'AppArmor cache directory')
26
27 option('data-path', type: 'string', value: 'lib/lxc',
28 description: 'Container storage directory')
29
30 option('doc-path', type: 'string', value: 'doc/lxc',
31 description: 'Documentation directory')
32
33 option('global-config-path', type: 'string', value: 'lxc',
34 description: 'Global configuration directory')
35
36 option('log-path', type: 'string', value: 'log/lxc',
37 description: 'Loging directory')
38
39 option('rootfs-mount-path', type: 'string', value: 'lxc/rootfs',
40 description: 'Container rootfs mount directory')
41
42 option('runtime-path', type: 'string', value: '/run',
43 description: 'Main runtime directory')
44
45 option('usernet-config-path', type: 'string', value: 'lxc/lxc-usernet',
46 description: 'User network configuration file path')
47
48 option('usernet-db-path', type: 'string', value: 'lxc/nics',
49 description: 'User network database file path')