17 lines
298 B
Python
17 lines
298 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
|
||
|
if rtconfig.CPU != 'common':
|
||
|
group = group + SConscript(os.path.join(rtconfig.CPU, 'SConscript'))
|
||
|
|
||
|
Return('group')
|