rt-thread-official/bsp/essemi/es32f365x/SConscript

15 lines
291 B
Python
Raw Normal View History

2021-10-15 14:47:01 +08:00
# for module compiling
import os
Import('RTT_ROOT')
objs = []
cwd = str(Dir('#'))
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')