# for module compiling import os Import('RTT_ROOT') cwd = str(Dir('#')) objs = [] list = os.listdir(cwd) print('------------------------------------------------') print('rtt_root: ' + RTT_ROOT) print('current dir: ' + cwd) print('------------------------------------------------') 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')