rt-thread/bsp/stm32/stm32f429-atk-apollo/applications/SConscript

16 lines
276 B
Python

import rtconfig
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd, str(Dir('#'))]
src = Split("""
main.c
""")
if GetDepend(['RT_USING_DFS']):
src += ['mnt.c']
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')