mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 17:18:56 +00:00
15 lines
340 B
Python
Executable File
15 lines
340 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')
|