4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 07:33:32 +08:00

18 lines
331 B
Python
Raw Normal View History

# RT-Thread building script for bridge
import os
from building import *
Import('rtconfig')
cwd = GetCurrentDir()
group = []
# add common code files
2019-03-26 13:36:01 +00:00
group = group + SConscript(os.path.join('common', 'SConscript'))
# cpu porting code files
2019-03-26 13:36:01 +00:00
group = group + SConscript(os.path.join(rtconfig.CPU, 'SConscript'))
Return('group')