rt-thread/bsp/core-v-mcu/core-v-cv32e40p/SConscript

17 lines
395 B
Python
Raw Normal View History

# for module compiling
# 将当前目录与子目录下的 SConscript传递给上级SConscript脚本
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(d, 'SConscript'))
Return('objs')