]> git.proxmox.com Git - mirror_qemu.git/blob - softmmu/meson.build
Merge tag 'pull_error_handle_fix_use_after_free.v1' of https://github.com/stefanberge...
[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 'dirtylimit.c',
8 'watchpoint.c',
9 )])
10
11 specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
12 'icount.c',
13 )])
14
15 softmmu_ss.add(files(
16 'balloon.c',
17 'bootdevice.c',
18 'cpus.c',
19 'cpu-throttle.c',
20 'cpu-timers.c',
21 'datadir.c',
22 'dma-helpers.c',
23 'globals.c',
24 'memory_mapping.c',
25 'qdev-monitor.c',
26 'rtc.c',
27 'runstate-action.c',
28 'runstate-hmp-cmds.c',
29 'runstate.c',
30 'tpm-hmp-cmds.c',
31 'vl.c',
32 ), sdl, libpmem, libdaxctl)
33
34 if have_tpm
35 softmmu_ss.add(files('tpm.c'))
36 endif
37
38 softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
39 softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))