Files
luban-lite-t3e-pro/bsp/examples/test-dce/SConscript

14 lines
285 B
Python
Raw Normal View History

2024-10-30 16:50:31 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('AIC_DCE_DRV_TEST') and GetDepend('RT_USING_FINSH'):
src = Glob('*.c')
group = DefineGroup('test-dce', src, depend = [''], CPPPATH = CPPPATH)
Return('group')