mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 17:18:56 +00:00
17 lines
329 B
Python
17 lines
329 B
Python
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = []
|
|
|
|
if GetDepend('AIC_ENCODER_HEC40'):
|
|
CPPPATH.append(cwd)
|
|
CPPPATH.append(cwd + '/hec40')
|
|
src += Glob('hec40/*.c')
|
|
|
|
group = DefineGroup('encoder', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|