Files

19 lines
524 B
Python
Raw Permalink 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('FINSH_USING_MSH') and GetDepend('RT_USING_FAL'):
src = Glob('test_fal.c')
2025-10-21 13:59:50 +08:00
if GetDepend('AIC_EXAMPLE'):
src += Glob('fal_power_loss_protection.c')
2024-06-04 19:00:30 +08:00
if GetDepend('RT_USING_SFUD') and GetDepend('RT_USING_SPI'):
src += Glob('test_sfud.c')
group = DefineGroup('test-spinor', src, depend = [''], CPPPATH = CPPPATH)
Return('group')