Files
刘可亮 9f7ba67007 v1.0.3
2024-01-27 08:47:24 +08:00

17 lines
361 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd, ]
src = []
if GetDepend('KERNEL_BAREMETAL') and GetDepend('LPKG_MPP') and GetDepend('AIC_VE_TEST'):
src += Glob('test_pic_dec.c')
CFLAGS = ' -c -ffunction-sections'
group = DefineGroup('test-ve', src, depend = [''], CPPPATH = CPPPATH)
Return('group')