mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 09:08:56 +00:00
16 lines
279 B
Python
16 lines
279 B
Python
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')
|