Files
luban-lite/bsp/examples/test-mbedtls-csrp/SConscript

14 lines
260 B
Python
Raw Normal View History

2025-10-21 13:59:50 +08:00
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')