2013-01-08 22:40:58 +08:00
|
|
|
# for network related component
|
|
|
|
import os
|
|
|
|
Import('RTT_ROOT')
|
2013-03-25 16:40:09 +08:00
|
|
|
from building import *
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
objs = []
|
|
|
|
list = os.listdir(os.path.join(RTT_ROOT, 'components', 'net'))
|
|
|
|
|
2013-06-30 21:46:14 +08:00
|
|
|
# the default version of LWIP is 1.4.1
|
|
|
|
if not GetDepend('RT_USING_LWIP132') and not GetDepend('RT_USING_LWIP140'):
|
|
|
|
AddDepend('RT_USING_LWIP141')
|
2013-03-25 16:40:09 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
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')
|