]>
Commit | Line | Data |
---|---|---|
ab4c0996 | 1 | option('qemu_suffix', type : 'string', value: 'qemu', |
73f3aa37 | 2 | description: 'Suffix for QEMU data/modules/config directories (can be empty)') |
491e74c1 MAL |
3 | option('docdir', type : 'string', value : 'doc', |
4 | description: 'Base directory for documentation installation (can be empty)') | |
cb572714 PB |
5 | |
6 | option('gettext', type : 'boolean', value : true, | |
7 | description: 'Localization of the GTK+ user interface') | |
deb62371 PB |
8 | option('sparse', type : 'feature', value : 'auto', |
9 | description: 'sparse checker') | |
cb572714 | 10 | |
aa087962 PB |
11 | option('malloc_trim', type : 'feature', value : 'auto', |
12 | description: 'enable libc malloc_trim() for memory optimization') | |
13 | option('malloc', type : 'combo', choices : ['system', 'tcmalloc', 'jemalloc'], | |
14 | value: 'system', description: 'choose memory allocator to use') | |
15 | ||
1badb709 PB |
16 | option('kvm', type: 'feature', value: 'auto', |
17 | description: 'KVM acceleration support') | |
18 | option('hax', type: 'feature', value: 'auto', | |
19 | description: 'HAX acceleration support') | |
20 | option('whpx', type: 'feature', value: 'auto', | |
21 | description: 'WHPX acceleration support') | |
22 | option('hvf', type: 'feature', value: 'auto', | |
23 | description: 'HVF acceleration support') | |
24 | option('xen', type: 'feature', value: 'auto', | |
25 | description: 'Xen backend support') | |
26 | option('xen_pci_passthrough', type: 'feature', value: 'auto', | |
27 | description: 'Xen PCI passthrough support') | |
28 | option('tcg', type: 'feature', value: 'auto', | |
29 | description: 'TCG support') | |
30 | ||
b4e312e9 PB |
31 | option('cocoa', type : 'feature', value : 'auto', |
32 | description: 'Cocoa user interface (macOS only)') | |
6ec0e15d PB |
33 | option('mpath', type : 'feature', value : 'auto', |
34 | description: 'Multipath persistent reservation passthrough') | |
cb572714 PB |
35 | option('sdl', type : 'feature', value : 'auto', |
36 | description: 'SDL user interface') | |
37 | option('sdl_image', type : 'feature', value : 'auto', | |
38 | description: 'SDL Image support for icons') | |
39 | option('u2f', type : 'feature', value : 'auto', | |
40 | description: 'U2F emulation support') | |
41 | option('vnc', type : 'feature', value : 'enabled', | |
42 | description: 'VNC server') | |
43 | option('vnc_jpeg', type : 'feature', value : 'auto', | |
44 | description: 'JPEG lossy compression for VNC server') | |
45 | option('vnc_png', type : 'feature', value : 'auto', | |
46 | description: 'PNG compression for VNC server') | |
47 | option('vnc_sasl', type : 'feature', value : 'auto', | |
48 | description: 'SASL authentication for VNC server') | |
49 | option('xkbcommon', type : 'feature', value : 'auto', | |
50 | description: 'xkbcommon support') | |
8b18cdbf RH |
51 | |
52 | option('capstone', type: 'combo', value: 'auto', | |
53 | choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], | |
54 | description: 'Whether and how to find the capstone library') | |
4d34a86b PB |
55 | option('slirp', type: 'combo', value: 'auto', |
56 | choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], | |
57 | description: 'Whether and how to find the slirp library') | |
fbb4121d PB |
58 | option('fdt', type: 'combo', value: 'auto', |
59 | choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], | |
60 | description: 'Whether and how to find the libfdt library') |