Files
luban-lite/bsp/examples_bare/test-spinor/SConscript

16 lines
372 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('KERNEL_BAREMETAL') and GetDepend('AIC_SPINOR_DRV_TEST'):
src += Glob('spinor.c')
2025-10-21 13:59:50 +08:00
if GetDepend('AIC_EXAMPLE'):
src += Glob('spinor_example.c')
2023-08-30 16:21:18 +08:00
group = DefineGroup('test-spinor', src, depend = [''], CPPPATH = CPPPATH)
Return('group')