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