mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00

When cross-compiling, by default qemu_datadir is 'c:\Program Files\QEMU', which is not recognized as being an absolute path, and meson will end up adding the prefix again. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20200826110419.528931-6-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
11 lines
603 B
Meson
11 lines
603 B
Meson
option('qemu_suffix', type : 'string', value: 'qemu',
|
|
description: 'Suffix for QEMU data/modules/config directories (can be empty)')
|
|
option('gettext', type : 'boolean', value : true)
|
|
option('sdl', type : 'feature', value : 'auto')
|
|
option('sdl_image', type : 'feature', value : 'auto')
|
|
option('u2f', type : 'feature', value : 'auto')
|
|
option('vnc', type : 'feature', value : 'enabled')
|
|
option('vnc_jpeg', type : 'feature', value : 'auto')
|
|
option('vnc_png', type : 'feature', value : 'auto')
|
|
option('vnc_sasl', type : 'feature', value : 'auto')
|
|
option('xkbcommon', type : 'feature', value : 'auto')
|