mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-29 12:10:22 +08:00
16 lines
273 B
Python
16 lines
273 B
Python
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')
|