rt-thread/bsp/apollo2/board/SConscript

14 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 = GetCurrentDir()
src = Glob('*.c')
2017-09-15 18:10:51 +08:00
CPPPATH = [cwd]
#remove other no use files
#SrcRemove(src, '*.c')
group = DefineGroup('Board', src, depend = [''], CPPPATH = CPPPATH)
Return('group')