Files
luban-lite-t3e-pro/bsp/common/SConscript
刘可亮 803cac77d5 V1.0.6
2024-09-03 11:16:08 +08:00

17 lines
386 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
src += Glob('partition/*.c')
src += Glob('private_param/*.c')
if not GetDepend('LPKG_USING_ZLIB'):
src += Glob('crc32/*.c')
src += Glob('utils/*.c')
CPPPATH = [cwd + '/include', ]
group = DefineGroup('aic_driver_common', src, depend = [''], CPPPATH = CPPPATH)
Return('group')