2020-08-04 20:18:36 +02:00
|
|
|
qsd_ss = ss.source_set()
|
|
|
|
qsd_ss.add(files('qemu-storage-daemon.c'))
|
2021-01-02 13:52:13 +01:00
|
|
|
qsd_ss.add(blockdev, chardev, qmp, qom, qemuutil, gnutls)
|
2020-08-04 20:18:36 +02:00
|
|
|
|
2020-08-19 14:44:56 +02:00
|
|
|
subdir('qapi')
|
2020-08-04 20:18:36 +02:00
|
|
|
|
|
|
|
if have_tools
|
2023-08-30 11:39:45 +02:00
|
|
|
qsd_ss = qsd_ss.apply(config_targetos, strict: false)
|
2021-08-11 11:47:05 +02:00
|
|
|
qsd = executable('qemu-storage-daemon',
|
|
|
|
qsd_ss.sources(),
|
|
|
|
dependencies: qsd_ss.dependencies(),
|
|
|
|
install: true)
|
2020-08-04 20:18:36 +02:00
|
|
|
endif
|