mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 17:18:56 +00:00
14 lines
290 B
Python
14 lines
290 B
Python
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = []
|
|
src = []
|
|
if GetDepend('AIC_IPERF_LWIP_TEST') and GetDepend('RT_USING_FINSH'):
|
|
src = Glob('*.c')
|
|
|
|
group = DefineGroup('test-iperf', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|