cirrus.yml: Compile FreeBSD with -Werror
[qemu/ar7.git] / qom / meson.build
bloba1cd03c82c9145f48e8bb2440ab72c9d643af09a
1 qom_ss = ss.source_set()
2 qom_ss.add(genh)
3 qom_ss.add(files(
4   'container.c',
5   'object.c',
6   'object_interfaces.c',
7   'qom-qobject.c',
8 ))
10 qmp_ss.add(files('qom-qmp-cmds.c'))
11 softmmu_ss.add(files('qom-hmp-cmds.c'))
13 qom_ss = qom_ss.apply(config_host, strict: false)
14 libqom = static_library('qom', qom_ss.sources() + genh,
15                         dependencies: [qom_ss.dependencies()],
16                         name_suffix: 'fa')
18 qom = declare_dependency(link_whole: libqom)