[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 5/6] meson: add spice dependency to core spice source files.
From: |
Gerd Hoffmann |
Subject: |
[PATCH v4 5/6] meson: add spice dependency to core spice source files. |
Date: |
Wed, 30 Sep 2020 13:29:03 +0200 |
Right now it happens to work by pure luck because the spice chardevs
add the spice dependency to the softmmu source set. That'll change
though once we start building spice chardevs as module, so lets fix
it properly.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
ui/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/meson.build b/ui/meson.build
index dd6c11013645..0798d3dc568f 100644
--- a/ui/meson.build
+++ b/ui/meson.build
@@ -14,7 +14,7 @@ softmmu_ss.add(files(
))
softmmu_ss.add(when: 'CONFIG_LINUX', if_true: files('input-linux.c'))
-softmmu_ss.add(when: 'CONFIG_SPICE', if_true: files('spice-core.c',
'spice-input.c', 'spice-display.c'))
+softmmu_ss.add(when: [spice, 'CONFIG_SPICE'], if_true: files('spice-core.c',
'spice-input.c', 'spice-display.c'))
softmmu_ss.add(when: [cocoa, 'CONFIG_COCOA'], if_true: files('cocoa.m'))
vnc_ss = ss.source_set()
--
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, 2020/09/30
- [PATCH v4 5/6] meson: add spice dependency to core spice source files.,
Gerd Hoffmann <=