2011-12-23 09:36:10 +08:00
|
|
|
# for module compiling
|
|
|
|
import os
|
2011-06-23 08:47:34 +08:00
|
|
|
Import('RTT_ROOT')
|
|
|
|
|
2011-12-23 09:36:10 +08:00
|
|
|
cwd = str(Dir('#'))
|
|
|
|
objs = []
|
|
|
|
list = os.listdir(cwd)
|
2011-06-23 08:47:34 +08:00
|
|
|
|
2011-12-23 09:36:10 +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'))
|
2011-06-23 08:47:34 +08:00
|
|
|
|
2011-12-23 09:36:10 +08:00
|
|
|
Return('objs')
|