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

10 lines
197 B
Python
Raw Normal View History

2017-09-19 12:14:52 +08:00
from building import *
2017-10-17 09:53:16 +08:00
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
2017-09-19 12:14:52 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')