abff1abfe8
Similar to hw_arch, each architecture defines two sourceset which are placed in dictionaries target_arch and target_softmmu_arch. These are then picked up from there when building the per-emulator static_library. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
14 lines
261 B
Meson
14 lines
261 B
Meson
tilegx_ss = ss.source_set()
|
|
tilegx_ss.add(files(
|
|
'cpu.c',
|
|
'helper.c',
|
|
'simd_helper.c',
|
|
'translate.c',
|
|
))
|
|
tilegx_ss.add(zlib)
|
|
|
|
tilegx_softmmu_ss = ss.source_set()
|
|
|
|
target_arch += {'tilegx': tilegx_ss}
|
|
target_softmmu_arch += {'tilegx': tilegx_softmmu_ss}
|