Files
2025-09-30 11:56:06 +08:00

15 lines
354 B
Python
Executable File

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('RT_USING_FINSH'):
if GetDepend('RT_USING_MTD_NAND') and GetDepend('RT_MTD_NAND_DEBUG'):
src = Glob('test_mtd.c')
group = DefineGroup('test-spinand', src, depend = [''], CPPPATH = CPPPATH)
Return('group')