[bsp] add gd32107c-eval first commit

This commit is contained in:
lza1205
2021-09-10 12:10:40 +08:00
parent 9debfd3d9a
commit 64c828666d
129 changed files with 59887 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')