rt-thread-official/bsp/apollo2/board/SConscript

14 lines
256 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')
2020-12-19 16:49:11 +08:00
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
2017-09-15 18:10:51 +08:00
Return('group')