mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
16 lines
274 B
Python
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')
|