4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 05:59:19 +08:00
Willian Chan 07ec9ec64c [BSP][STM32][F469-DISCO]Add lcd drivers
Signed-off-by: Willian Chan <chentingwei@rt-thread.com>
2019-04-22 16:04:26 +08:00

14 lines
218 B
Python

import rtconfig
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = Split("""
main.c
lcd_init.c
""")
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')