rt-thread/components/libc/SConscript

16 lines
314 B
Python
Raw Normal View History

2017-10-13 12:44:54 +08:00
# RT-Thread building script for bridge
2017-10-13 12:44:54 +08:00
import os
from building import *
2013-01-08 22:40:58 +08:00
2017-10-13 12:44:54 +08:00
cwd = GetCurrentDir()
2013-01-08 22:40:58 +08:00
objs = []
2017-10-13 12:44:54 +08:00
list = os.listdir(cwd)
2017-10-13 12:44:54 +08:00
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'))
2013-01-08 22:40:58 +08:00
Return('objs')