Browse Source
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>pull/96/head
committed by
Paolo Bonzini
6 changed files with 20 additions and 6 deletions
@ -1,5 +1,2 @@ |
|||
qom-obj-y = object.o container.o qom-qobject.o |
|||
qom-obj-y += object_interfaces.o |
|||
|
|||
common-obj-$(CONFIG_SOFTMMU) += qom-hmp-cmds.o qom-qmp-cmds.o |
|||
storage-daemon-obj-y += qom-qmp-cmds.o |
|||
|
|||
@ -0,0 +1,15 @@ |
|||
qom_ss = ss.source_set() |
|||
qom_ss.add(files( |
|||
'container.c', |
|||
'object.c', |
|||
'object_interfaces.c', |
|||
'qom-qobject.c', |
|||
)) |
|||
|
|||
qom_ss = qom_ss.apply(config_host, strict: false) |
|||
libqom = static_library('qom', qom_ss.sources() + genh, |
|||
dependencies: [qom_ss.dependencies()], |
|||
link_with: [libqemuutil], |
|||
name_suffix: 'fa') |
|||
|
|||
qom = declare_dependency(link_whole: libqom) |
|||
Loading…
Reference in new issue