Files
luban-lite/bsp/examples/test-wifi/SConscript

16 lines
279 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 = [cwd]
src = []
group = []
if GetDepend(['AIC_WIFI_TEST']):
src += Glob('./test_wifi.c')
group = DefineGroup('wifi-test', src, depend = [''], CPPPATH = CPPPATH)
Return('group')