1# RT-Thread building script for bridge 2 3import os 4from building import * 5 6Import('rtconfig') 7 8cwd = GetCurrentDir() 9group = [] 10 11# add common code files 12group = group + SConscript(os.path.join(cwd, 'common', 'SConscript')) 13 14# cpu porting code files 15group = group + SConscript(os.path.join(cwd, rtconfig.CPU, 'SConscript')) 16 17Return('group') 18