mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
meson: convert qapi-specific to meson
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
c574e16112
commit
5242523b5f
4 changed files with 7 additions and 21 deletions
|
|
@ -1,15 +0,0 @@
|
|||
QAPI_TARGET_MODULES = machine-target misc-target
|
||||
|
||||
obj-y = qapi-introspect.o
|
||||
obj-y += $(QAPI_TARGET_MODULES:%=qapi-types-%.o)
|
||||
obj-y += qapi-types.o
|
||||
obj-y += $(QAPI_TARGET_MODULES:%=qapi-visit-%.o)
|
||||
obj-y += qapi-visit.o
|
||||
obj-y += $(QAPI_TARGET_MODULES:%=qapi-events-%.o)
|
||||
obj-y += qapi-events.o
|
||||
obj-y += $(QAPI_TARGET_MODULES:%=qapi-commands-%.o)
|
||||
obj-y += qapi-commands.o
|
||||
obj-y += qapi-init-commands.o
|
||||
|
||||
QAPI_MODULES_STORAGE_DAEMON = block-core char common control crypto
|
||||
QAPI_MODULES_STORAGE_DAEMON += introspect job qom sockets pragma transaction
|
||||
|
|
@ -114,8 +114,12 @@ foreach output : qapi_util_outputs
|
|||
i = i + 1
|
||||
endforeach
|
||||
|
||||
# These are still handled by the Makefile
|
||||
i += qapi_nonmodule_outputs.length()
|
||||
i += qapi_specific_outputs.length()
|
||||
foreach output : qapi_specific_outputs + qapi_nonmodule_outputs
|
||||
if output.endswith('.h')
|
||||
genh += qapi_files[i]
|
||||
endif
|
||||
specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: qapi_files[i])
|
||||
i = i + 1
|
||||
endforeach
|
||||
|
||||
qapi_doc_texi = qapi_files[i]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue