]> git.proxmox.com Git - mirror_qemu.git/blame - softmmu/meson.build
meson: Replace CONFIG_SOFTMMU -> CONFIG_SYSTEM_ONLY
[mirror_qemu.git] / softmmu / meson.build
CommitLineData
c7b64948 1specific_ss.add(when: 'CONFIG_SYSTEM_ONLY', if_true: [files(
5d3ea0e1 2 'arch_init.c',
5d3ea0e1
PB
3 'ioport.c',
4 'memory.c',
e0220bb5 5 'physmem.c',
87e303de 6 'watchpoint.c',
740b1759
CF
7)])
8
c7b64948 9specific_ss.add(when: ['CONFIG_SYSTEM_ONLY', 'CONFIG_TCG'], if_true: [files(
2609ec28 10 'icount.c',
740b1759 11)])
800d4ded
PB
12
13softmmu_ss.add(files(
e0220bb5 14 'balloon.c',
800d4ded 15 'bootdevice.c',
e0220bb5
PMD
16 'cpus.c',
17 'cpu-throttle.c',
18 'cpu-timers.c',
19 'datadir.c',
30ee29fd 20 'dirtylimit.c',
800d4ded 21 'dma-helpers.c',
e0220bb5
PMD
22 'globals.c',
23 'memory_mapping.c',
800d4ded 24 'qdev-monitor.c',
09637edb 25 'qtest.c',
e0220bb5
PMD
26 'rtc.c',
27 'runstate-action.c',
bab46b81 28 'runstate-hmp-cmds.c',
e0220bb5 29 'runstate.c',
0801062c 30 'tpm-hmp-cmds.c',
e0220bb5 31 'vl.c',
d9f24bf5 32), sdl, libpmem, libdaxctl)
800d4ded 33
0d04c4c9
PB
34if have_tpm
35 softmmu_ss.add(files('tpm.c'))
36endif
37
90835c2b 38softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
800d4ded 39softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))