-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmeson_options.txt
23 lines (16 loc) · 1.49 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
option('with-static-binary', type: 'boolean', value: 'false', description: 'Build a static binary')
# Control what modules usysconf knows about
option('with-linux-driver-management', type: 'boolean', value: 'true', description: 'Enable linux-driver-management support')
option('with-clr-boot-manager', type: 'boolean', value: 'true', description: 'Enable clr-boot-manager support')
option('with-qol-assist', type: 'boolean', value: 'true', description: 'Enable qol-assist support')
option('with-systemd', type: 'boolean', value: 'true', description: 'Enable systemd support')
option('with-systemd-reexec', type: 'boolean', value: 'true', description: 'Enable systemd re-exec support')
# Used for boot management bits (like depmod)
option('with-kernel-modules-dir', type: 'string', value: '/lib/modules', description: 'Path to the kernel module base tree')
# clr-boot-manager specific currently
option('with-kernel-dir', type: 'string', value: '/usr/lib/kernel', description: 'Path to the vendor kernel tree')
option('with-log-dir', type: 'string', value: '/var/log', description: 'Logging directory for usysconf')
# This is useful for virtualbox upgrades
option('with-vbox-restart', type: 'boolean', value: 'false', description: 'Automatically restart vboxdrv service on update')
option('with-apparmor', type: 'boolean', value: 'true', description: 'Enable AppArmor integration via aa-lsm-hook')
option('with-mono-certs', type: 'boolean', value: 'true', description: 'Enable Mono certificate population via cert-sync')