4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 01:29:24 +08:00
2017-10-17 09:53:16 +08:00

12 lines
250 B
Python

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