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

11 lines
189 B
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
from building import *
2013-01-22 16:57:47 +08:00
cwd = GetCurrentDir()
2013-01-08 22:40:58 +08:00
src = Glob('*.c')
2013-01-22 16:57:47 +08:00
2013-01-08 22:40:58 +08:00
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')