qemu

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

meson.build (439B)


      1 mips_user_ss = ss.source_set()
      2 mips_softmmu_ss = ss.source_set()
      3 mips_ss = ss.source_set()
      4 mips_ss.add(files(
      5   'cpu.c',
      6   'fpu.c',
      7   'gdbstub.c',
      8   'msa.c',
      9 ))
     10 
     11 if have_system
     12   subdir('sysemu')
     13 endif
     14 
     15 if 'CONFIG_TCG' in config_all
     16   subdir('tcg')
     17 endif
     18 
     19 mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
     20 
     21 target_arch += {'mips': mips_ss}
     22 target_softmmu_arch += {'mips': mips_softmmu_ss}
     23 target_user_arch += {'mips': mips_user_ss}