rt-thread-official/components/utilities/ymodem/SConscript

16 lines
273 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
src = Split('''
ymodem.c
''')
2023-01-09 10:14:23 +08:00
CPPPATH = [cwd]
if GetDepend('YMODEM_USING_FILE_TRANSFER'):
src += ['ry_sy.c']
group = DefineGroup('Utilities', src, depend = ['RT_USING_RYM'], CPPPATH = CPPPATH)
Return('group')