mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
18 lines
331 B
Python
18 lines
331 B
Python
|
|
# RT-Thread building script for bridge
|
||
|
|
|
||
|
|
import os
|
||
|
|
from building import *
|
||
|
|
|
||
|
|
Import('rtconfig')
|
||
|
|
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
group = []
|
||
|
|
|
||
|
|
# add common code files
|
||
|
|
group = group + SConscript(os.path.join('common', 'SConscript'))
|
||
|
|
|
||
|
|
# cpu porting code files
|
||
|
|
group = group + SConscript(os.path.join(rtconfig.CPU, 'SConscript'))
|
||
|
|
|
||
|
|
Return('group')
|