Files
luban-lite/kernel/rt-thread/components/utilities/ymodem/SConscript
刘可亮 564e22b32f v0.7.5
2023-08-28 09:48:01 +08:00

16 lines
274 B
Python

from building import *
cwd = GetCurrentDir()
src = Split('''
ymodem.c
''')
CPPPATH = [cwd]
if GetDepend('YMODEM_USING_FILE_TRANSFER'):
src += ['ry_sy.c']
group = DefineGroup('Utilities', src, depend = ['RT_USING_RYM'], CPPPATH = CPPPATH)
Return('group')