rt-thread/bsp/stm32/stm32l476-st-nucleo/applications/arduino_pinout/SConscript

10 lines
200 B
Python
Raw Normal View History

2023-03-24 02:07:13 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
inc = [cwd]
2024-03-27 12:03:14 +08:00
group = DefineGroup('RTduino-pinout', src, depend = ['PKG_USING_RTDUINO'], CPPPATH = inc)
2023-03-24 02:07:13 +08:00
Return('group')