This commit is contained in:
刘可亮
2024-01-27 08:47:24 +08:00
parent d3bd993b5f
commit 9f7ba67007
2345 changed files with 74421 additions and 76616 deletions

View File

@@ -3,7 +3,7 @@ Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
src = []
CPPPATH = []
if GetDepend('AIC_I2S_CODEC_SELECT'):
@@ -14,6 +14,10 @@ if GetDepend('AIC_I2S_CODEC_ES8388'):
CPPPATH.append(cwd + 'es8388/')
src += Glob('es8388/*.c')
if GetDepend('AIC_I2S_CODEC_TLV320'):
CPPPATH.append(cwd + 'tlv320aic3101/')
src += Glob('tlv320aic3101/*.c')
group = DefineGroup('codec', src, depend = [''], CPPPATH = CPPPATH)
Return('group')