mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

Various methods of accel-target.c don't use any target-specific knowledge at all and can be built once in the target-agnostic accel-common.c file. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-Id: <20250417165430.58213-8-philmd@linaro.org>
16 lines
339 B
Meson
16 lines
339 B
Meson
common_ss.add(files('accel-common.c'))
|
|
specific_ss.add(files('accel-target.c'))
|
|
system_ss.add(files('accel-system.c', 'accel-blocker.c'))
|
|
user_ss.add(files('accel-user.c'))
|
|
|
|
subdir('tcg')
|
|
if have_system
|
|
subdir('hvf')
|
|
subdir('qtest')
|
|
subdir('kvm')
|
|
subdir('xen')
|
|
subdir('stubs')
|
|
endif
|
|
|
|
# qtest
|
|
system_ss.add(files('dummy-cpus.c'))
|