qemu/softmmu/meson.build
<<
>>
Prefs
   1specific_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
   9specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
  10  'icount.c'
  11)])
  12
  13softmmu_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
  30if have_tpm
  31  softmmu_ss.add(files('tpm.c'))
  32endif
  33
  34softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
  35softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))
  36