Files
luban-lite-t3e-pro/bsp/examples_bare/test-audio/SConscript

13 lines
305 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('KERNEL_BAREMETAL') and GetDepend('AIC_AUDIO_DRV_TEST'):
src += Glob('../test-audio/*.c')
group = DefineGroup('test-audio', src, depend = [''], CPPPATH = CPPPATH)
Return('group')