]> Git Repo - qemu.git/blob - target/i386/meson.build
Merge remote-tracking branch 'remotes/philmd/tags/pflash-20210511' into staging
[qemu.git] / target / i386 / meson.build
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', 'sev.c'), if_false: files('sev-stub.c'))
10
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'))
14
15 i386_softmmu_ss = ss.source_set()
16 i386_softmmu_ss.add(files(
17   'arch_dump.c',
18   'arch_memory_mapping.c',
19   'machine.c',
20   'monitor.c',
21   'cpu-sysemu.c',
22 ))
23 i386_user_ss = ss.source_set()
24
25 subdir('kvm')
26 subdir('hax')
27 subdir('whpx')
28 subdir('nvmm')
29 subdir('hvf')
30 subdir('tcg')
31
32 target_arch += {'i386': i386_ss}
33 target_softmmu_arch += {'i386': i386_softmmu_ss}
34 target_user_arch += {'i386': i386_user_ss}
This page took 0.0235 seconds and 4 git commands to generate.