diff options
Diffstat (limited to 'target/i386/meson.build')
-rw-r--r-- | target/i386/meson.build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/i386/meson.build b/target/i386/meson.build index 2e9c472..89ba491 100644 --- a/target/i386/meson.build +++ b/target/i386/meson.build @@ -11,6 +11,9 @@ i386_ss.add(when: 'CONFIG_SEV', if_true: files('host-cpu.c', 'confidential-guest # x86 cpu type i386_ss.add(when: 'CONFIG_KVM', if_true: files('host-cpu.c')) i386_ss.add(when: 'CONFIG_HVF', if_true: files('host-cpu.c')) +i386_ss.add(when: 'CONFIG_WHPX', if_true: files('host-cpu.c')) +i386_ss.add(when: 'CONFIG_NVMM', if_true: files('host-cpu.c')) +i386_ss.add(when: 'CONFIG_MSHV', if_true: files('host-cpu.c')) i386_system_ss = ss.source_set() i386_system_ss.add(files( @@ -31,6 +34,8 @@ subdir('whpx') subdir('nvmm') subdir('hvf') subdir('tcg') +subdir('emulate') +subdir('mshv') target_arch += {'i386': i386_ss} target_system_arch += {'i386': i386_system_ss} |