Files
luban-lite-t3e-pro/packages/third-party/webclient/SConscript
刘可亮 aaa66c7b20 V1.0.1
2023-11-09 20:19:51 +08:00

17 lines
373 B
Python

from building import *
cwd = GetCurrentDir()
path = [cwd + '/inc']
src = Glob('src/webclient.c')
if GetDepend(['WEBCLIENT_USING_FILE_DOWMLOAD']):
src += Glob('src/webclient_file.c')
if GetDepend(['WEBCLIENT_USING_SAMPLES']):
src += Glob('samples/*.c')
group = DefineGroup('WebClient', src, depend = ['LPKG_USING_WEBCLIENT'], CPPPATH = path)
Return('group')