4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-14 11:39:32 +08:00

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')