4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 04:59:19 +08:00
2019-01-07 06:09:45 +08:00

16 lines
270 B
Python

# RT-Thread building script for bridge
import os
from building import *
Import('rtconfig')
cwd = GetCurrentDir()
group = []
list = os.listdir(cwd)
# cpu porting code files
group = group + SConscript(os.path.join(cwd, rtconfig.CPU, 'SConscript'))
Return('group')