4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-25 19:27:22 +08:00

14 lines
257 B
Python
Raw Normal View History

2018-06-14 10:34:31 +08:00
import rtconfig
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
2018-06-14 10:34:31 +08:00
src = []
if GetDepend(['RT_USING_LWIP']):
src += ['drv_wifi.c', 'drv_wlan.c']
2018-06-14 10:34:31 +08:00
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
2018-06-14 10:34:31 +08:00
Return('group')