rt-thread/bsp/stm32l476-nucleo/drivers/SConscript

20 lines
298 B
Python
Raw Normal View History

2017-07-05 18:17:16 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'drivers')
# add the general drivers.
src = Split("""
board.c
usart.c
drv_led.c
gpio.c
2017-07-05 18:17:16 +08:00
""")
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')