4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 18:19:22 +08:00
2018-10-29 11:06:58 +08:00

20 lines
475 B
Python

# for network related component
import os
Import('RTT_ROOT')
from building import *
objs = []
cwd = GetCurrentDir()
list = os.listdir(cwd)
# the default version of LWIP is 2.0.2
if not GetDepend('RT_USING_LWIP141') and not GetDepend('RT_USING_LWIP202'):
AddDepend('RT_USING_LWIP202')
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')