qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

meson.build (704B)


      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 )])
      9 
     10 specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
     11   'icount.c'
     12 )])
     13 
     14 softmmu_ss.add(files(
     15   'balloon.c',
     16   'bootdevice.c',
     17   'cpus.c',
     18   'cpu-throttle.c',
     19   'cpu-timers.c',
     20   'datadir.c',
     21   'dma-helpers.c',
     22   'globals.c',
     23   'memory_mapping.c',
     24   'qdev-monitor.c',
     25   'rtc.c',
     26   'runstate-action.c',
     27   'runstate.c',
     28   'vl.c',
     29 ), sdl, libpmem, libdaxctl)
     30 
     31 if have_tpm
     32   softmmu_ss.add(files('tpm.c'))
     33 endif
     34 
     35 softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
     36 softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))