mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 00:58:55 +00:00
14 lines
260 B
Python
14 lines
260 B
Python
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = []
|
|
src = []
|
|
if GetDepend('LPKG_USING_MBEDTLS'):
|
|
src += Glob('*.c')
|
|
|
|
group = DefineGroup('test-mbedtls', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|