rt-thread/bsp/stm32/stm32f469-st-disco/applications/SConscript

14 lines
218 B
Python
Raw Normal View History

import rtconfig
from building import *
cwd = GetCurrentDir()
2019-04-10 21:46:21 +08:00
CPPPATH = [cwd]
src = Split("""
main.c
lcd_init.c
""")
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')