This commit is contained in:
刘可亮
2025-07-22 11:15:46 +08:00
parent d164b333ed
commit 11c97ef399
2870 changed files with 951307 additions and 26675 deletions

View File

@@ -0,0 +1,16 @@
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')