mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-26 16:29:31 +08:00
13 lines
245 B
Python
13 lines
245 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = []
|
||
|
inc = [cwd]
|
||
|
|
||
|
if GetDepend('RT_USING_ARDUINO_UNO_LAYOUT'):
|
||
|
src += ['arduino_layout.c']
|
||
|
|
||
|
group = DefineGroup('Arduino', src, depend = ['RT_USING_ARDUINO'], CPPPATH = inc)
|
||
|
|
||
|
Return('group')
|