rt-thread-official/bsp/nrf5x/libraries/drivers/SConscript

21 lines
321 B
Python
Raw Normal View History

2020-04-14 22:17:27 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
# add the general drivers.
src = Split("""
""")
if GetDepend(['BSP_USING_UART']):
2020-04-14 22:17:27 +08:00
src += ['drv_uart.c']
# src += ['drv_common.c']
path = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
Return('group')