Files
luban-lite-t3e-pro/bsp/examples/test-monkey/SConscript
刘可亮 8bca5e8332 v1.0.4
2024-04-03 16:40:57 +08:00

14 lines
287 B
Python

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