[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 4/6] meson: add spice_headers dependency.
From: |
Gerd Hoffmann |
Subject: |
[PATCH v4 4/6] meson: add spice_headers dependency. |
Date: |
Wed, 30 Sep 2020 13:29:02 +0200 |
Used for files which (with CONFIG_SPICE=y) depend on spice header files
to pick up some enum, but which do not depend on on the actual spice
shared library.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
audio/meson.build | 2 +-
meson.build | 2 ++
monitor/meson.build | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/audio/meson.build b/audio/meson.build
index 18a831129ed0..7d53b0f920ff 100644
--- a/audio/meson.build
+++ b/audio/meson.build
@@ -1,5 +1,5 @@
+softmmu_ss.add([spice_headers, files('audio.c')])
softmmu_ss.add(files(
- 'audio.c',
'audio_legacy.c',
'mixeng.c',
'noaudio.c',
diff --git a/meson.build b/meson.build
index d36dd085b5fc..76f51b9ab323 100644
--- a/meson.build
+++ b/meson.build
@@ -213,9 +213,11 @@ if 'CONFIG_LIBJACK' in config_host
jack = declare_dependency(link_args: config_host['JACK_LIBS'].split())
endif
spice = not_found
+spice_headers = not_found
if 'CONFIG_SPICE' in config_host
spice = declare_dependency(compile_args: config_host['SPICE_CFLAGS'].split(),
link_args: config_host['SPICE_LIBS'].split())
+ spice_headers = declare_dependency(compile_args:
config_host['SPICE_CFLAGS'].split())
endif
rt = cc.find_library('rt', required: false)
libmpathpersist = not_found
diff --git a/monitor/meson.build b/monitor/meson.build
index eb2a534fdc88..6d00985ace7a 100644
--- a/monitor/meson.build
+++ b/monitor/meson.build
@@ -3,7 +3,7 @@ qmp_ss.add(files('monitor.c', 'qmp.c', 'qmp-cmds-control.c'))
softmmu_ss.add(files(
'hmp-cmds.c',
'hmp.c',
- 'qmp-cmds.c',
))
+softmmu_ss.add([spice_headers, files('qmp-cmds.c')])
specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: [files('misc.c'), spice])
--
2.27.0
- [PATCH v4 0/6] build spice chardevs as module, Gerd Hoffmann, 2020/09/30
- [PATCH v4 1/6] ui/spice-app: don't use qemu_chr_open_spice_port directly, Gerd Hoffmann, 2020/09/30
- [PATCH v4 2/6] chardev/spice: make qemu_chr_open_spice_port static, Gerd Hoffmann, 2020/09/30
- [PATCH v4 6/6] chardev/spice: build spice chardevs as module, Gerd Hoffmann, 2020/09/30
- [PATCH v4 3/6] chardev/spice: simplify chardev setup, Gerd Hoffmann, 2020/09/30
- [PATCH v4 4/6] meson: add spice_headers dependency.,
Gerd Hoffmann <=
- [PATCH v4 5/6] meson: add spice dependency to core spice source files., Gerd Hoffmann, 2020/09/30