Merge tag 'pull-loongarch-20241016' of https://gitlab.com/gaosong/qemu into staging
[qemu/armbru.git] / target / i386 / meson.build
blob075117989b9d2a5bd63b62470f68ac9328912169
1 i386_ss = ss.source_set()
2 i386_ss.add(files(
3   'cpu.c',
4   'gdbstub.c',
5   'helper.c',
6   'xsave_helper.c',
7   'cpu-dump.c',
8 ))
9 i386_ss.add(when: 'CONFIG_SEV', if_true: files('host-cpu.c', 'confidential-guest.c'))
11 # x86 cpu type
12 i386_ss.add(when: 'CONFIG_KVM', if_true: files('host-cpu.c'))
13 i386_ss.add(when: 'CONFIG_HVF', if_true: files('host-cpu.c'))
15 i386_system_ss = ss.source_set()
16 i386_system_ss.add(files(
17   'arch_dump.c',
18   'arch_memory_mapping.c',
19   'machine.c',
20   'monitor.c',
21   'cpu-apic.c',
22   'cpu-sysemu.c',
24 i386_system_ss.add(when: 'CONFIG_SEV', if_true: files('sev.c'), if_false: files('sev-sysemu-stub.c'))
26 i386_user_ss = ss.source_set()
28 subdir('kvm')
29 subdir('whpx')
30 subdir('nvmm')
31 subdir('hvf')
32 subdir('tcg')
34 target_arch += {'i386': i386_ss}
35 target_system_arch += {'i386': i386_system_ss}
36 target_user_arch += {'i386': i386_user_ss}