mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-16 14:11:02 +00:00
Merge 94d687d9e5
into 86c9f79991
This commit is contained in:
commit
69abe9b05e
@ -9,12 +9,18 @@ set(LWIP_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|||||||
|
|
||||||
set (LWIP_DEFINITIONS LWIP_DEBUG=1)
|
set (LWIP_DEFINITIONS LWIP_DEBUG=1)
|
||||||
|
|
||||||
if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
|
option(LWIP_OPTION_ENABLE_EXAMPLE_APPS "Build example apps on win32/linux/darwin" ON)
|
||||||
add_subdirectory(${LWIP_DIR}/contrib/ports/win32/example_app)
|
|
||||||
elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
|
if (LWIP_OPTION_ENABLE_EXAMPLE_APPS)
|
||||||
add_subdirectory(${LWIP_DIR}/contrib/ports/unix/example_app)
|
if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
|
||||||
|
add_subdirectory(${LWIP_DIR}/contrib/ports/win32/example_app)
|
||||||
|
elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
|
||||||
|
add_subdirectory(${LWIP_DIR}/contrib/ports/unix/example_app)
|
||||||
|
else()
|
||||||
|
message(WARNING "Host ${CMAKE_SYSTEM_NAME} is not supported to build example_app")
|
||||||
|
endif()
|
||||||
else()
|
else()
|
||||||
message(WARNING "Host ${CMAKE_SYSTEM_NAME} is not supported to build example_app")
|
message(STATUS "example_app build disabled")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Source package generation
|
# Source package generation
|
||||||
|
Loading…
Reference in New Issue
Block a user