修改部分格式问题

[add] 增加ft2004 BSP
This commit is contained in:
huanghe
2021-05-26 16:34:37 +08:00
committed by huanghe
parent 17cae02ad5
commit 0c5692eece
131 changed files with 17377 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')