rt-thread/bsp/raspberry-pi/raspi2/cpu/SConscript

10 lines
210 B
Python
Raw Normal View History

2020-01-15 17:19:49 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S')
CPPPATH = [cwd]
group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
2020-01-15 17:19:49 +08:00
Return('group')