mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-15 19:08:54 +00:00
14 lines
281 B
Python
14 lines
281 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
|
|
if GetDepend('RT_USING_LWIP141'):
|
|
src = ['dhcp_server.c']
|
|
else:
|
|
src = ['dhcp_server_raw.c']
|
|
|
|
group = DefineGroup('lwIP', src, depend = ['RT_USING_LWIP', 'LWIP_USING_DHCPD'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|