diff options
author | Paolo Bonzini | 2020-09-18 10:57:25 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-10-03 14:07:35 +0200 |
commit | 1badb709cffee455ec9fb2253cf7aec66e09a9d2 (patch) | |
tree | 1176f19f8ad2514cacb7fdbc3b6c0dd443ba31df /tests | |
parent | default-configs: move files to default-configs/devices/ (diff) | |
download | qemu-1badb709cffee455ec9fb2253cf7aec66e09a9d2.tar.gz qemu-1badb709cffee455ec9fb2253cf7aec66e09a9d2.tar.xz qemu-1badb709cffee455ec9fb2253cf7aec66e09a9d2.zip |
configure: convert accelerator variables to meson options
Prepare for moving the tests to meson. For now they only have
enabled/disabled as the possible values when meson is invoked,
but "auto" will be a possibility later, when configure will only
parse the command line options.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build index 3c2969092d..bf47a38c74 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -269,7 +269,7 @@ test('decodetree', sh, subdir('fp') -if 'CONFIG_TCG' in config_host +if not get_option('tcg').disabled() if 'CONFIG_PLUGIN' in config_host subdir('plugin') endif |