Add dm365 porting.

This commit is contained in:
weety
2015-09-04 12:30:20 +08:00
parent cb51bdb245
commit b71cb4c09d
45 changed files with 13431 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# for module compiling
import os
Import('RTT_ROOT')
cwd = str(Dir('#'))
objs = []
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')