Files
luban-lite-t3e-pro/bsp/examples/test-audio/SConscript
刘可亮 9f7ba67007 v1.0.3
2024-01-27 08:47:24 +08:00

17 lines
413 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')