4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 03:43:46 +08:00

13 lines
256 B
Python
Raw Normal View History

Import('RTT_ROOT')
Import('rtconfig')
from building import *
src = Split('''
minilzo.c
lzo.c
''')
CPPPATH = [RTT_ROOT + '/components/external/lzo']
group = DefineGroup('lzo', src, depend = ['RT_USING_LZO'], CPPPATH = CPPPATH)
Return('group')