13 lines
258 B
Python
13 lines
258 B
Python
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')
|