4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 18:03:31 +08:00

12 lines
213 B
Python
Raw Normal View History

2019-07-24 17:03:26 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd, ]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')