4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-14 19:09:24 +08:00

12 lines
261 B
Python
Raw Normal View History

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'applications')
2021-05-14 14:42:21 +08:00
src = Glob('*.c')
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')