Files
luban-lite-t3e-pro/bsp/examples_bare/test-spinand/SConscript
刘可亮 724d6bf65e v1.1.2
2025-01-08 19:12:06 +08:00

15 lines
341 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')
group = DefineGroup('test-spinand', src, depend = [''], CPPPATH = CPPPATH)
Return('group')