rt-thread-official/bsp/lpc408x/applications/SConscript

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