meson.build 423 B

1234567891011121314
  1. qsd_ss = ss.source_set()
  2. qsd_ss.add(files('qemu-storage-daemon.c'))
  3. qsd_ss.add(blockdev, chardev, qmp, qom, qemuutil)
  4. subdir('qapi')
  5. if have_tools
  6. qsd_ss = qsd_ss.apply({})
  7. qsd = executable('qemu-storage-daemon',
  8. qsd_ss.sources(),
  9. link_args: '@block.syms', link_depends: block_syms,
  10. dependencies: qsd_ss.dependencies(),
  11. install: true)
  12. endif