SConscript 519 字节
Newer Older
M
Ming, Bai 已提交
1 2 3
# for network related component
import os
Import('RTT_ROOT')
4
from building import *
M
Ming, Bai 已提交
5 6 7 8

objs = []
list = os.listdir(os.path.join(RTT_ROOT, 'components', 'net'))

9 10 11 12
# the default version of LWIP is 1.4.0
if not GetDepend('RT_USING_LWIP132') and not GetDepend('RT_USING_LWIP141'):
    AddDepend('RT_USING_LWIP140')

M
Ming, Bai 已提交
13 14 15 16 17 18
for d in list:
    path = os.path.join(RTT_ROOT, 'components', 'net', d)
    if os.path.isfile(os.path.join(path, 'SConscript')):
        objs = objs + SConscript(os.path.join(d, 'SConscript'))

Return('objs')