Files
2025-09-30 11:56:06 +08:00

17 lines
429 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('RT_USING_FINSH'):
if GetDepend('AIC_AUDIO_DRV_TEST') or GetDepend('AIC_I2S_DRV_TEST'):
src += Glob('a*.c')
if GetDepend('AIC_I2S_DRV_TEST'):
src += Glob('test_i2s_loopback.c')
group = DefineGroup('test-aplay', src, depend = [''], CPPPATH = CPPPATH)
Return('group')