f7be5fc84b
* [bsp][sconscript] 整理统一sconscript格式 * update * update
14 lines
257 B
Python
14 lines
257 B
Python
import rtconfig
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
|
|
src = []
|
|
if GetDepend(['RT_USING_LWIP']):
|
|
src += ['drv_wifi.c', 'drv_wlan.c']
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|