4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 23:59:32 +08:00
2014-04-03 17:59:14 +08:00

12 lines
258 B
Python

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'applications')
src = Glob('*.c')
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')