master
build 20 lines 409 Bytes
Raw
1 sh4_ss = ss.source_set()
2 sh4_ss.add(files(
3 'cpu.c',
4 'helper.c',
5 'op_helper.c',
6 'translate.c',
7 ))
8
9 sh4_common_system_ss = ss.source_set()
10 sh4_common_system_ss.add(files(
11 'gdbstub.c',
12 'monitor.c',
13 ))
14
15 sh4_user_ss = ss.source_set()
16 sh4_user_ss.add(files('gdbstub.c'))
17
18 target_arch += {'sh4': sh4_ss}
19 target_user_arch += {'sh4': sh4_user_ss}
20 target_common_system_arch += {'sh4': sh4_common_system_ss}