rt-thread/bsp/stm32/stm32l4r5-st-nucleo/applications/SConscript

10 lines
197 B
Python
Raw Normal View History

2019-12-05 11:44:39 +08:00
from building import *
cwd = GetCurrentDir()
2019-12-11 08:23:09 +08:00
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
2019-12-05 11:44:39 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')