rt-thread/bsp/nuvoton_m487/driver/SConscript

15 lines
241 B
Python
Raw Normal View History

2018-11-19 09:49:32 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Split('''
board.c
drv_uart.c
''')
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')