meson.build (694B)
1specific_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 20specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files( 21 'icount.c' 22)]) 23 24softmmu_ss.add(files( 25 'bootdevice.c', 26 'dma-helpers.c', 27 'qdev-monitor.c', 28), sdl, libpmem, libdaxctl) 29 30softmmu_ss.add(when: 'CONFIG_TPM', if_true: files('tpm.c')) 31softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c')) 32softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))