Files
luban-lite/bsp/examples/test-pbus/SConscript

14 lines
287 B
Python
Raw Normal View History

2023-11-09 20:19:51 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
2025-10-21 13:59:50 +08:00
if GetDepend('AIC_PBUS_DRV_TEST') and GetDepend('RT_USING_FINSH'):
2023-11-09 20:19:51 +08:00
src = Glob('*.c')
2025-10-21 13:59:50 +08:00
group = DefineGroup('test-pbus', src, depend = [''], CPPPATH = CPPPATH)
2023-11-09 20:19:51 +08:00
Return('group')