]> git.proxmox.com Git - mirror_qemu.git/blob - softmmu/meson.build
Merge tag 'block-pull-request' of https://gitlab.com/stefanha/qemu into staging
[mirror_qemu.git] / softmmu / meson.build
1 specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: [files(
2 'arch_init.c',
3 'ioport.c',
4 'memory.c',
5 'physmem.c',
6 'qtest.c',
7 )])
8
9 specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
10 'icount.c'
11 )])
12
13 softmmu_ss.add(files(
14 'balloon.c',
15 'bootdevice.c',
16 'cpus.c',
17 'cpu-throttle.c',
18 'cpu-timers.c',
19 'datadir.c',
20 'dma-helpers.c',
21 'globals.c',
22 'memory_mapping.c',
23 'qdev-monitor.c',
24 'rtc.c',
25 'runstate-action.c',
26 'runstate.c',
27 'vl.c',
28 ), sdl, libpmem, libdaxctl)
29
30 if have_tpm
31 softmmu_ss.add(files('tpm.c'))
32 endif
33
34 softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
35 softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))