Marc-André Lureau | ab4c099 | 2020-08-26 15:04:16 +0400 | [diff] [blame] | 1 | option('qemu_suffix', type : 'string', value: 'qemu', |
Marc-André Lureau | 73f3aa3 | 2020-08-26 15:04:15 +0400 | [diff] [blame] | 2 | description: 'Suffix for QEMU data/modules/config directories (can be empty)') |
Marc-André Lureau | 491e74c | 2020-08-26 15:04:17 +0400 | [diff] [blame] | 3 | option('docdir', type : 'string', value : 'doc', |
| 4 | description: 'Base directory for documentation installation (can be empty)') |
Paolo Bonzini | 16bf7a3 | 2020-10-16 03:19:14 -0400 | [diff] [blame^] | 5 | option('qemu_firmwarepath', type : 'string', value : '', |
| 6 | description: 'search PATH for firmware files') |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 7 | option('sphinx_build', type : 'string', value : '', |
| 8 | description: 'Use specified sphinx-build [$sphinx_build] for building document (default to be empty)') |
Paolo Bonzini | cb57271 | 2020-09-01 01:59:23 -0400 | [diff] [blame] | 9 | |
Yonggang Luo | e366766 | 2020-10-16 06:06:25 +0800 | [diff] [blame] | 10 | option('docs', type : 'feature', value : 'auto', |
| 11 | description: 'Documentations build support') |
Paolo Bonzini | cb57271 | 2020-09-01 01:59:23 -0400 | [diff] [blame] | 12 | option('gettext', type : 'boolean', value : true, |
| 13 | description: 'Localization of the GTK+ user interface') |
Paolo Bonzini | deb6237 | 2020-09-01 07:51:16 -0400 | [diff] [blame] | 14 | option('sparse', type : 'feature', value : 'auto', |
| 15 | description: 'sparse checker') |
Paolo Bonzini | cb57271 | 2020-09-01 01:59:23 -0400 | [diff] [blame] | 16 | |
Paolo Bonzini | aa08796 | 2020-09-01 11:15:30 -0400 | [diff] [blame] | 17 | option('malloc_trim', type : 'feature', value : 'auto', |
| 18 | description: 'enable libc malloc_trim() for memory optimization') |
| 19 | option('malloc', type : 'combo', choices : ['system', 'tcmalloc', 'jemalloc'], |
| 20 | value: 'system', description: 'choose memory allocator to use') |
| 21 | |
Paolo Bonzini | 1badb70 | 2020-09-18 04:57:25 -0400 | [diff] [blame] | 22 | option('kvm', type: 'feature', value: 'auto', |
| 23 | description: 'KVM acceleration support') |
| 24 | option('hax', type: 'feature', value: 'auto', |
| 25 | description: 'HAX acceleration support') |
| 26 | option('whpx', type: 'feature', value: 'auto', |
| 27 | description: 'WHPX acceleration support') |
| 28 | option('hvf', type: 'feature', value: 'auto', |
| 29 | description: 'HVF acceleration support') |
| 30 | option('xen', type: 'feature', value: 'auto', |
| 31 | description: 'Xen backend support') |
| 32 | option('xen_pci_passthrough', type: 'feature', value: 'auto', |
| 33 | description: 'Xen PCI passthrough support') |
| 34 | option('tcg', type: 'feature', value: 'auto', |
| 35 | description: 'TCG support') |
| 36 | |
Paolo Bonzini | b4e312e | 2020-09-01 11:28:59 -0400 | [diff] [blame] | 37 | option('cocoa', type : 'feature', value : 'auto', |
| 38 | description: 'Cocoa user interface (macOS only)') |
Paolo Bonzini | 6ec0e15 | 2020-09-16 18:07:29 +0200 | [diff] [blame] | 39 | option('mpath', type : 'feature', value : 'auto', |
| 40 | description: 'Multipath persistent reservation passthrough') |
Yonggang Luo | 5285e59 | 2020-10-13 07:43:48 +0800 | [diff] [blame] | 41 | option('iconv', type : 'feature', value : 'auto', |
| 42 | description: 'Font glyph conversion support') |
| 43 | option('curses', type : 'feature', value : 'auto', |
| 44 | description: 'curses UI') |
Paolo Bonzini | 5c53015 | 2020-10-15 06:09:27 -0400 | [diff] [blame] | 45 | option('libudev', type : 'feature', value : 'auto', |
| 46 | description: 'Use libudev to enumerate host devices') |
Paolo Bonzini | cb57271 | 2020-09-01 01:59:23 -0400 | [diff] [blame] | 47 | option('sdl', type : 'feature', value : 'auto', |
| 48 | description: 'SDL user interface') |
| 49 | option('sdl_image', type : 'feature', value : 'auto', |
| 50 | description: 'SDL Image support for icons') |
| 51 | option('u2f', type : 'feature', value : 'auto', |
| 52 | description: 'U2F emulation support') |
| 53 | option('vnc', type : 'feature', value : 'enabled', |
| 54 | description: 'VNC server') |
| 55 | option('vnc_jpeg', type : 'feature', value : 'auto', |
| 56 | description: 'JPEG lossy compression for VNC server') |
| 57 | option('vnc_png', type : 'feature', value : 'auto', |
| 58 | description: 'PNG compression for VNC server') |
| 59 | option('vnc_sasl', type : 'feature', value : 'auto', |
| 60 | description: 'SASL authentication for VNC server') |
| 61 | option('xkbcommon', type : 'feature', value : 'auto', |
| 62 | description: 'xkbcommon support') |
Richard Henderson | 8b18cdb | 2020-09-13 12:19:25 -0700 | [diff] [blame] | 63 | |
| 64 | option('capstone', type: 'combo', value: 'auto', |
| 65 | choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], |
| 66 | description: 'Whether and how to find the capstone library') |
Paolo Bonzini | 4d34a86 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 67 | option('slirp', type: 'combo', value: 'auto', |
| 68 | choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], |
| 69 | description: 'Whether and how to find the slirp library') |
Paolo Bonzini | fbb4121 | 2020-10-05 11:31:15 +0200 | [diff] [blame] | 70 | option('fdt', type: 'combo', value: 'auto', |
| 71 | choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], |
| 72 | description: 'Whether and how to find the libfdt library') |