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

9 lines
171 B
Python
Raw Normal View History

2021-02-18 13:29:12 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
2021-02-18 13:29:12 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = [cwd])
2021-02-18 13:29:12 +08:00
Return('group')