add gd32303e-eval BSP

This commit is contained in:
luo jiao
2018-05-21 17:15:05 +08:00
parent a99b09658e
commit 4f4a04437f
129 changed files with 54583 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')