rt-thread/bsp/x1000/applications/SConscript

11 lines
205 B
Python
Raw Normal View History

2016-04-24 19:34:41 +08:00
from building import *
cwd = GetCurrentDir()
2017-11-11 13:51:56 +08:00
src = Glob('*.c') + Glob('*.cpp')
2016-04-24 19:34:41 +08:00
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')