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