qga/qapi-schema: Refill doc comments to conform to current conventions
[qemu/kevin.git] / target / arm / meson.build
blob2e10464dbb6be77f237ec36d4399716c10c28251
1 arm_ss = ss.source_set()
2 arm_ss.add(files(
3   'cpu.c',
4   'debug_helper.c',
5   'gdbstub.c',
6   'helper.c',
7   'vfp_helper.c',
8 ))
9 arm_ss.add(zlib)
11 arm_ss.add(when: 'CONFIG_KVM', if_true: files('hyp_gdbstub.c', 'kvm.c'), if_false: files('kvm-stub.c'))
12 arm_ss.add(when: 'CONFIG_HVF', if_true: files('hyp_gdbstub.c'))
14 arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
15   'cpu64.c',
16   'gdbstub64.c',
19 arm_system_ss = ss.source_set()
20 arm_system_ss.add(files(
21   'arch_dump.c',
22   'arm-powerctl.c',
23   'arm-qmp-cmds.c',
24   'cortex-regs.c',
25   'machine.c',
26   'ptw.c',
29 arm_user_ss = ss.source_set()
31 subdir('hvf')
33 if 'CONFIG_TCG' in config_all_accel
34    subdir('tcg')
35 else
36     arm_ss.add(files('tcg-stubs.c'))
37 endif
39 target_arch += {'arm': arm_ss}
40 target_system_arch += {'arm': arm_system_ss}
41 target_user_arch += {'arm': arm_user_ss}