rt-thread-official/bsp/raspberry-pi/raspi3-64/applications/SConscript

10 lines
216 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
2020-01-10 10:38:21 +08:00
src = Glob('*.c') + Glob('*.cpp') + Glob('test/*.c')
CPPPATH = [cwd]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')