SConscript 331 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
# RT-Thread building script for bridge

import os
from building import *

Import('rtconfig')

cwd   = GetCurrentDir()
group = []

# add common code files
12
group = group + SConscript(os.path.join('common', 'SConscript'))
13 14

# cpu porting code files
15
group = group + SConscript(os.path.join(rtconfig.CPU, 'SConscript'))
16 17

Return('group')