17 lines
310 B
Python
17 lines
310 B
Python
|
# RT-Thread building script for bridge
|
||
|
|
||
|
import os
|
||
|
from building import *
|
||
|
|
||
|
Import('rtconfig')
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
# add common code files
|
||
|
group = SConscript(os.path.join('common', 'SConscript'))
|
||
|
|
||
|
# cpu porting code files
|
||
|
group = group + SConscript(os.path.join(rtconfig.CPU, 'SConscript'))
|
||
|
|
||
|
Return('group')
|