qemu/tests/migration/meson.build
<<
>>
Prefs
   1stress = executable(
   2  'stress',
   3  files('stress.c'),
   4  dependencies: [glib],
   5  link_args: ['-static'],
   6  build_by_default: false,
   7)
   8
   9custom_target(
  10  'initrd-stress.img',
  11  output: 'initrd-stress.img',
  12  input: stress,
  13  command: [find_program('initrd-stress.sh'), '@OUTPUT@', '@INPUT@']
  14)
  15