hw/timer/sse-timer: Model the SSE Subsystem System Timer
[qemu/ar7.git] / target / i386 / meson.build
blobc4bf20b31969a284d0a6bc87c000ab526bfc7f2a
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('sev.c'), if_false: files('sev-stub.c'))
11 i386_softmmu_ss = ss.source_set()
12 i386_softmmu_ss.add(files(
13   'arch_dump.c',
14   'arch_memory_mapping.c',
15   'machine.c',
16   'monitor.c',
19 subdir('kvm')
20 subdir('hax')
21 subdir('whpx')
22 subdir('hvf')
23 subdir('tcg')
25 target_arch += {'i386': i386_ss}
26 target_softmmu_arch += {'i386': i386_softmmu_ss}