]> git.proxmox.com Git - mirror_qemu.git/blob - softmmu/meson.build
Merge remote-tracking branch 'remotes/rth-gitlab/tags/pull-tcg-20201210' into staging
[mirror_qemu.git] / softmmu / meson.build
1 specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: [files(
2 'arch_init.c',
3 'balloon.c',
4 'cpus.c',
5 'cpu-throttle.c',
6 'datadir.c',
7 'physmem.c',
8 'ioport.c',
9 'rtc.c',
10 'memory.c',
11 'memory_mapping.c',
12 'qtest.c',
13 'vl.c',
14 'cpu-timers.c',
15 )])
16
17 specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
18 'icount.c'
19 )])
20
21 softmmu_ss.add(files(
22 'bootdevice.c',
23 'dma-helpers.c',
24 'qdev-monitor.c',
25 ), sdl, libpmem, libdaxctl)
26
27 softmmu_ss.add(when: 'CONFIG_TPM', if_true: files('tpm.c'))
28 softmmu_ss.add(when: 'CONFIG_SECCOMP', if_true: [files('qemu-seccomp.c'), seccomp])
29 softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))