12 lines
205 B
Python
12 lines
205 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
inc = [cwd]
|
|
|
|
print(cwd)
|
|
|
|
group = DefineGroup('RTduino', src, depend = ['PKG_USING_RTDUINO'], CPPPATH = inc)
|
|
|
|
Return('group')
|