13 lines
258 B
Python
Raw Normal View History

2025-04-08 18:46:12 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('quicklz.c')
CPPPATH = [cwd]
if GetDepend('QLZ_USING_SAMPLE'):
src += ['quicklz_sample.c']
group = DefineGroup('quicklz', src, depend = ['PKG_USING_QUICKLZ'], CPPPATH = CPPPATH)
Return('group')