qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

meson.build (291B)


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