Files
luban-lite-t3e-pro/bsp/examples/test-tsen/SConscript
刘可亮 7bbc029dae v1.0.0
2023-08-30 16:21:18 +08:00

14 lines
283 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('AIC_TSEN_TEST') and GetDepend('RT_USING_FINSH'):
src = Glob('*.c')
group = DefineGroup('test-tsen', src, depend = [''], CPPPATH = CPPPATH)
Return('group')