Files
luban-lite/bsp/peripheral/wireless/aic8800/SConscript
刘可亮 724d6bf65e v1.1.2
2025-01-08 19:12:06 +08:00

15 lines
294 B
Python

Import('rtconfig')
import os
from building import *
objs = []
cwd = GetCurrentDir()
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')