meson: Fix use of QEMU_VERSION

This commit is contained in:
Matt Borgerson 2023-01-23 00:30:40 -07:00
parent 6ea11938b2
commit 6c67b79e08
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
project('qemu', ['c'], meson_version: '>=0.61.3',
default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=c++17', 'b_colorout=auto',
'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true'],
version: files('VERSION'))
version: files('QEMU_VERSION'))
add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true)
add_test_setup('slow', exclude_suites: ['thorough'], env: ['G_TEST_SLOW=1', 'SPEED=slow'])