qemu-e2k/target/e2k/meson.build

18 lines
266 B
Meson
Raw Normal View History

e2k_ss = ss.source_set()
2020-11-08 19:27:47 +01:00
e2k_ss.add(files(
'cpu.c',
'cpu-dump.c',
2020-11-16 19:54:23 +01:00
'gdbstub.c',
'helper.c',
2020-12-05 12:01:46 +01:00
'helper_aau.c',
'helper_fpu.c',
'helper_int.c',
'helper_sm.c',
2020-12-02 19:38:14 +01:00
'helper_vec.c',
2020-11-08 19:27:47 +01:00
'translate.c',
))
# no softmmu support yet
target_arch += {'e2k': e2k_ss}