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

10 lines
192 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
inc = [cwd]
group = DefineGroup('Arduino', src, depend = ['RT_USING_ARDUINO'], CPPPATH = inc)
Return('group')