rt-thread/bsp/apollo2/applications/SConscript

12 lines
254 B
Python
Raw Normal View History

2017-09-15 18:10:51 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
2017-09-20 11:14:45 +08:00
cwd = os.path.join(str(Dir('#')), 'applications')
src = Glob('*.c')
2017-09-15 18:10:51 +08:00
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')