Files
luban-lite/packages/third-party/miniz/SConscript

14 lines
254 B
Python
Raw Normal View History

2025-10-21 13:59:50 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
path = [cwd]
if GetDepend('LPKG_MINIZ_DEMO'):
src += Glob('examples/*.c')
group = DefineGroup('miniz', src, depend = ['LPKG_USING_MINIZ'], CPPPATH = path)
Return('group')