mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 21:43:31 +08:00
13 lines
244 B
Python
13 lines
244 B
Python
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') |