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

16 lines
276 B
Python
Raw Normal View History

import rtconfig
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd, str(Dir('#'))]
src = Split("""
main.c
""")
2019-09-04 20:36:52 +08:00
if GetDepend(['RT_USING_DFS']):
src += ['mnt.c']
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')