Ubiquitous/RT_Thread/:add K210 bsp

This commit is contained in:
chunyexixiaoyu
2021-06-16 20:52:31 +08:00
parent 1df91a6b3c
commit 223933b6f9
23 changed files with 2811 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import os
from building import *
cwd = GetCurrentDir()
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')