rt-thread-official/bsp/at32/at32f437-start/applications/SConscript

18 lines
307 B
Python
Raw Normal View History

2022-04-08 15:31:35 +08:00
# RT-Thread building script for component
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
# add the general drivers.
src = Split("""
main.c
""")
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')