4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 01:23:31 +08:00
2019-01-20 13:43:15 +08:00

16 lines
255 B
Python

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