7b004d9fd6
* [bsp][essemi] Adapt es32f369x for RTduino
10 lines
193 B
Python
10 lines
193 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
inc = [cwd]
|
|
|
|
group = DefineGroup('Arduino', src, depend = ['PKG_USING_RTDUINO'], CPPPATH = inc)
|
|
|
|
Return('group')
|