mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
17 lines
386 B
Python
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')
|