mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
5582c58f82
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
15 lines
397 B
Meson
15 lines
397 B
Meson
qom_ss = ss.source_set()
|
|
qom_ss.add(genh)
|
|
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()],
|
|
name_suffix: 'fa')
|
|
|
|
qom = declare_dependency(link_whole: libqom)
|