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