4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-24 06:39:57 +08:00

10 lines
197 B
Python
Raw Normal View History

2019-12-05 11:44:39 +08:00
from building import *
cwd = GetCurrentDir()
2019-12-11 08:23:09 +08:00
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
2019-12-05 11:44:39 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')