Files
刘可亮 564e22b32f v0.7.5
2023-08-28 09:48:01 +08:00

17 lines
299 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd, ]
src = []
if GetDepend('AIC_MTD_BARE_TEST'):
src += Glob('mtd.c')
CFLAGS = ' -c -ffunction-sections'
group = DefineGroup('test-mtd', src, depend = [''], CPPPATH = CPPPATH)
Return('group')