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

14 lines
280 B
Python
Raw Normal View History

2017-08-30 12:18:28 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd, str(Dir('#'))]
#remove other no use files
#SrcRemove(src, '*.c')
2020-11-20 13:38:11 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
2017-08-30 12:18:28 +08:00
Return('group')