mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-02-05 05:23:46 +00:00
- upgraded bsp to v1.10.0 - moved hpm_sdk to rt-thread package - added support for hpm6p00evk and hpm5e00evk Signed-off-by: Fan YANG <fan.yang@hpmicro.com>
15 lines
279 B
Python
15 lines
279 B
Python
import os
|
|
import rtconfig
|
|
from building import *
|
|
|
|
|
|
objs = []
|
|
cwd = GetCurrentDir()
|
|
list = os.listdir(cwd)
|
|
|
|
for item in list:
|
|
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
|
|
objs = objs + SConscript(os.path.join(item, 'SConscript'))
|
|
|
|
Return('objs')
|