Files
luban-lite/bsp/examples_bare/test-spinand/SConscript
刘可亮 11c97ef399 v1.2.1
2025-07-22 11:15:46 +08:00

17 lines
379 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('KERNEL_BAREMETAL') and GetDepend('AIC_SPINAND_DRV_TEST'):
src += Glob('spinand.c')
src += Glob('spinand_benchmark.c')
src += Glob('spinand_bbt_cmd.c')
group = DefineGroup('test-spinand', src, depend = [''], CPPPATH = CPPPATH)
Return('group')