repair the send peoblem for ch438

This commit is contained in:
Wang_Weigen
2022-03-22 14:00:34 +08:00
parent ec7b594345
commit be221d902b
8 changed files with 95 additions and 19 deletions

View File

@@ -0,0 +1,14 @@
import os
Import('RTT_ROOT')
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(path, 'SConscript'))
Return('objs')