mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 18:43:32 +08:00
0189987d91
华芯微特SWM341芯片的bsp支持包 * 修改dac.c函数名称错误 * delete swm320-lq100 bsp * 修复sdio读写块的地址偏移问题 * add synwit swm341 bsp * 修复gcc下启动文件错误 * 为测试用例添加说明
15 lines
297 B
Python
15 lines
297 B
Python
# for module compiling
|
|
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')
|