4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-26 21:47:25 +08:00

13 lines
285 B
Python

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