rt-thread-official/components/net/SConscript

15 lines
306 B
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
# for network related component
import os
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
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')