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

10 lines
189 B
Python
Raw Normal View History

2019-05-30 18:00:03 +08:00
from building import *
cwd = GetCurrentDir()
2019-06-06 07:43:17 +08:00
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
2019-05-30 18:00:03 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')