summaryrefslogtreecommitdiffstats
path: root/hw/cpu/meson.build
diff options
context:
space:
mode:
authorMarc-André Lureau2019-08-17 09:21:13 +0200
committerPaolo Bonzini2020-08-21 12:30:31 +0200
commitcff3c5d2b4029f375b9ed077d99577b3d64e7e24 (patch)
tree6e0bcc287f2f4ea927e5b5d3d679a7d12702a497 /hw/cpu/meson.build
parentmeson: convert hw/display (diff)
downloadqemu-cff3c5d2b4029f375b9ed077d99577b3d64e7e24.tar.gz
qemu-cff3c5d2b4029f375b9ed077d99577b3d64e7e24.tar.xz
qemu-cff3c5d2b4029f375b9ed077d99577b3d64e7e24.zip
meson: convert hw/cpu
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/cpu/meson.build')
-rw-r--r--hw/cpu/meson.build6
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/cpu/meson.build b/hw/cpu/meson.build
new file mode 100644
index 0000000000..9e52fee9e7
--- /dev/null
+++ b/hw/cpu/meson.build
@@ -0,0 +1,6 @@
+softmmu_ss.add(files('core.c', 'cluster.c'))
+
+specific_ss.add(when: 'CONFIG_ARM11MPCORE', if_true: files('arm11mpcore.c'))
+specific_ss.add(when: 'CONFIG_REALVIEW', if_true: files('realview_mpcore.c'))
+specific_ss.add(when: 'CONFIG_A9MPCORE', if_true: files('a9mpcore.c'))
+specific_ss.add(when: 'CONFIG_A15MPCORE', if_true: files('a15mpcore.c'))