rt-thread/components/net/SConscript

20 lines
513 B
Python
Raw Normal View History

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 = []
cwd = GetCurrentDir()
list = os.listdir(cwd)
2013-01-08 22:40:58 +08:00
# the default version of LWIP is 2.0.2
if not GetDepend('RT_USING_LWIP141') and not GetDepend('RT_USING_LWIP202') and not GetDepend('RT_USING_LWIP210'):
2017-10-10 16:50:40 +08:00
AddDepend('RT_USING_LWIP202')
2013-03-25 16:40:09 +08:00
2013-01-08 22:40:58 +08:00
for d in list:
path = os.path.join(cwd, d)
2013-01-08 22:40:58 +08:00
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')