2020-08-04 18:18:36 +00:00
|
|
|
qsd_ss = ss.source_set()
|
|
|
|
qsd_ss.add(files('qemu-storage-daemon.c'))
|
2024-05-24 08:00:23 +00:00
|
|
|
qsd_ss.add(blockdev, chardev, qmp, qom, qemuutil)
|
2020-08-04 18:18:36 +00:00
|
|
|
|
2020-08-19 12:44:56 +00:00
|
|
|
subdir('qapi')
|
2020-08-04 18:18:36 +00:00
|
|
|
|
|
|
|
if have_tools
|
2023-08-30 09:52:43 +00:00
|
|
|
qsd_ss = qsd_ss.apply({})
|
2021-08-11 09:47:05 +00:00
|
|
|
qsd = executable('qemu-storage-daemon',
|
|
|
|
qsd_ss.sources(),
|
2024-05-24 11:17:08 +00:00
|
|
|
link_args: '@block.syms', link_depends: block_syms,
|
2021-08-11 09:47:05 +00:00
|
|
|
dependencies: qsd_ss.dependencies(),
|
|
|
|
install: true)
|
2020-08-04 18:18:36 +00:00
|
|
|
endif
|