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

10 lines
206 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('cpu', src, depend = [''], CPPPATH = CPPPATH)
Return('group')