de59dda32d
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
16 lines
430 B
Meson
16 lines
430 B
Meson
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)
|