tests/qtest/m48t59-test: Silence compiler warning with -Wshadow
[qemu/kevin.git] / tests / migration / meson.build
bloba91aa61c659394b5dc10c66580506bc281b44ab5
1 sysprof = dependency('sysprof-capture-4', method: 'pkg-config', required: false)
2 glib_static = dependency('glib-2.0', version: glib_req_ver, required: false,
3                          method: 'pkg-config', static: true)
5 stress = executable(
6   'stress',
7   files('stress.c'),
8   dependencies: [glib_static, sysprof],
9   link_args: ['-static'],
10   build_by_default: false,
13 custom_target(
14   'initrd-stress.img',
15   output: 'initrd-stress.img',
16   input: stress,
17   command: [find_program('initrd-stress.sh'), '@OUTPUT@', '@INPUT@']