4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-15 02:39:12 +08:00
2024-11-05 22:36:59 -05:00

15 lines
363 B
Python

from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
list = os.listdir(cwd)
for item in list:
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
group += SConscript(os.path.join(item, 'SConscript'))
Return('group')