]> git.proxmox.com Git - mirror_qemu.git/blob - softmmu/meson.build
block/export: Conditionally ignore set-context error
[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 'globals.c',
8 'physmem.c',
9 'ioport.c',
10 'rtc.c',
11 'runstate.c',
12 'memory.c',
13 'memory_mapping.c',
14 'qtest.c',
15 'vl.c',
16 'cpu-timers.c',
17 'runstate-action.c',
18 )])
19
20 specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
21 'icount.c'
22 )])
23
24 softmmu_ss.add(files(
25 'bootdevice.c',
26 'dma-helpers.c',
27 'qdev-monitor.c',
28 ), sdl, libpmem, libdaxctl)
29
30 softmmu_ss.add(when: 'CONFIG_TPM', if_true: files('tpm.c'))
31 softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
32 softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))