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

10 lines
192 B
Python
Raw Normal View History

2014-01-02 18:30:13 +08:00
from building import *
2019-03-08 15:02:46 +08:00
cwd = GetCurrentDir()
2014-01-02 18:30:13 +08:00
CPPPATH = [cwd, str(Dir('#'))]
2019-03-08 15:02:46 +08:00
src = Glob('*.c')
2014-01-02 18:30:13 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')