4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-22 18:17:23 +08:00

10 lines
216 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
2020-01-10 10:38:21 +08:00
src = Glob('*.c') + Glob('*.cpp') + Glob('test/*.c')
CPPPATH = [cwd]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')