rt-thread/bsp/amebaz/drivers/wlan/SConscript

16 lines
273 B
Python
Raw Normal View History

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