Files
luban-lite/bsp/examples_bare/test-spinand/SConscript

15 lines
341 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_SPINAND_DRV_TEST'):
src += Glob('spinand.c')
2025-01-08 19:12:06 +08:00
src += Glob('spinand_benchmark.c')
2023-08-30 16:21:18 +08:00
group = DefineGroup('test-spinand', src, depend = [''], CPPPATH = CPPPATH)
Return('group')