16 lines
270 B
Python
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')
|