mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 10:43:31 +08:00
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')
|