4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-27 03:57:23 +08:00
2022-01-08 15:48:50 +08:00

13 lines
293 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 = group + DefineGroup('Applications', src, depend = ['RT_USING_ARDUINO'])
Return('group')