4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 01:33:31 +08:00
2021-04-26 13:46:22 +08:00

14 lines
230 B
Python
Executable File

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