rt-thread-official/components/finsh/SConscript

21 lines
345 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
2014-01-01 23:14:45 +08:00
src = Split('''
shell.c
2021-08-23 17:30:05 +08:00
msh.c
msh_parse.c
2014-01-01 23:14:45 +08:00
''')
if GetDepend('MSH_USING_BUILT_IN_COMMANDS'):
src += ['cmd.c']
2021-11-16 00:22:49 +08:00
if GetDepend('DFS_USING_POSIX'):
2021-08-23 17:30:05 +08:00
src += ['msh_file.c']
2014-01-01 23:14:45 +08:00
CPPPATH = [cwd]
2021-08-26 22:08:12 +08:00
group = DefineGroup('Finsh', src, depend = ['RT_USING_FINSH'], CPPPATH = CPPPATH)
Return('group')