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