4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-27 03:57:23 +08:00
2023-01-08 22:52:13 -05:00

16 lines
273 B
Python

# RT-Thread building script for component
from building import *
Import('RTT_ROOT')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [ cwd ]
group = DefineGroup('board', src, depend = [''], CPPPATH = CPPPATH)
Return('group')
')