mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
meson: ensure dbus-display generated code is built before other units
It's simply by luck that dbus-display header is built first before the
other units using it.
With sourceset, I can't find an easier way out than declaring an extra
dependency for dbus-display1 generate code.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
(cherry picked from commit 1222070e77
)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
086850aa80
commit
c172136ea3
1 changed files with 4 additions and 2 deletions
|
@ -81,7 +81,9 @@ if dbus_display
|
||||||
'--interface-prefix', 'org.qemu.',
|
'--interface-prefix', 'org.qemu.',
|
||||||
'--c-namespace', 'QemuDBus',
|
'--c-namespace', 'QemuDBus',
|
||||||
'--generate-c-code', '@BASENAME@'])
|
'--generate-c-code', '@BASENAME@'])
|
||||||
dbus_ss.add(when: [gio, pixman, opengl, gbm],
|
dbus_display1_lib = static_library('dbus-display1', dbus_display1, dependencies: gio)
|
||||||
|
dbus_display1_dep = declare_dependency(link_with: dbus_display1_lib, include_directories: include_directories('.'))
|
||||||
|
dbus_ss.add(when: [gio, pixman, opengl, gbm, dbus_display1_dep],
|
||||||
if_true: [files(
|
if_true: [files(
|
||||||
'dbus-chardev.c',
|
'dbus-chardev.c',
|
||||||
'dbus-clipboard.c',
|
'dbus-clipboard.c',
|
||||||
|
@ -89,7 +91,7 @@ if dbus_display
|
||||||
'dbus-error.c',
|
'dbus-error.c',
|
||||||
'dbus-listener.c',
|
'dbus-listener.c',
|
||||||
'dbus.c',
|
'dbus.c',
|
||||||
), dbus_display1])
|
)])
|
||||||
ui_modules += {'dbus' : dbus_ss}
|
ui_modules += {'dbus' : dbus_ss}
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue