Files
luban-lite-t3e-pro/bsp/examples/test-spinand/SConscript

15 lines
340 B
Python
Raw Normal View History

2024-06-04 19:00:30 +08:00
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')