4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-22 23:37:24 +08:00
2016-05-10 09:34:05 +08:00

12 lines
194 B
Python

from building import *
cwd = GetCurrentDir()
src = Split('''
minilzo.c
lzo.c
''')
CPPPATH = [cwd]
group = DefineGroup('lzo', src, depend = ['RT_USING_LZO'], CPPPATH = CPPPATH)
Return('group')