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

10 lines
209 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]
2020-11-20 13:38:11 +08:00
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH)
2020-01-15 17:19:49 +08:00
Return('group')