![Akihiko Odaki](/assets/img/avatar_default.png)
This reverts commit 3eacf70bb5a83e4775ad8003cbca63a40f70c8c2. It was only needed because of duplicate objects caused by declare_dependency(link_whole: ...), and can be dropped now that meson.build specifies objects and dependencies separately for the internal dependencies. Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> Message-ID: <20240524-objects-v1-2-07cbbe96166b@daynix.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
15 lines
423 B
Meson
15 lines
423 B
Meson
qsd_ss = ss.source_set()
|
|
qsd_ss.add(files('qemu-storage-daemon.c'))
|
|
qsd_ss.add(blockdev, chardev, qmp, qom, qemuutil)
|
|
|
|
subdir('qapi')
|
|
|
|
if have_tools
|
|
qsd_ss = qsd_ss.apply({})
|
|
qsd = executable('qemu-storage-daemon',
|
|
qsd_ss.sources(),
|
|
link_args: '@block.syms', link_depends: block_syms,
|
|
dependencies: qsd_ss.dependencies(),
|
|
install: true)
|
|
endif
|