rt-thread/bsp/simulator/applications/SConscript

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')