重新分类为common文件夹下属all文件夹和excgcc文件夹

This commit is contained in:
Meco Man
2021-04-21 00:56:36 +08:00
parent 926cd86589
commit 40c09fc1e0
22 changed files with 24 additions and 0 deletions
@@ -0,0 +1,15 @@
# RT-Thread building script for bridge
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')