mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
d6eebaa47a
- take code from STABLE-2_2_0_RELEASE commit on https://git.savannah.gnu.org/git/lwip.git - remove lwip/contrib directory - do required changes due to upgrade in * CMakeLists.txt * include/lwip/arch/cc.h * include/lwip/arch/sys_arch.h * include/lwip/lwipopts.h * include/tcpip.h * ip/CMakeLists.txt * ip/lwip_glue/lwip_glue.h * ip/lwip_glue/tcp.c * ip/transport/tcp/if.c * tcpip/icmp.c CORE-13098
35 lines
1.3 KiB
CMake
35 lines
1.3 KiB
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
set (CMAKE_CONFIGURATION_TYPES "Debug;Release")
|
|
|
|
project(lwIP)
|
|
|
|
# Example lwIP application
|
|
set(LWIP_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set (LWIP_DEFINITIONS LWIP_DEBUG=1)
|
|
|
|
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()
|
|
|
|
# Source package generation
|
|
set(CPACK_SOURCE_GENERATOR "ZIP")
|
|
set(CPACK_SOURCE_PACKAGE_DESCRIPTION_SUMMARY "lwIP lightweight IP stack")
|
|
set(CPACK_PACKAGE_VERSION_MAJOR "${LWIP_VERSION_MAJOR}")
|
|
set(CPACK_PACKAGE_VERSION_MINOR "${LWIP_VERSION_MINOR}")
|
|
set(CPACK_PACKAGE_VERSION_PATCH "${LWIP_VERSION_REVISION}")
|
|
set(CPACK_SOURCE_IGNORE_FILES "/build/;${CPACK_SOURCE_IGNORE_FILES};.git")
|
|
set(CPACK_SOURCE_PACKAGE_FILE_NAME "lwip-${LWIP_VERSION_MAJOR}.${LWIP_VERSION_MINOR}.${LWIP_VERSION_REVISION}")
|
|
include(CPack)
|
|
|
|
# Generate docs before creating source package
|
|
include(src/Filelists.cmake)
|
|
add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source)
|
|
if (TARGET lwipdocs)
|
|
add_dependencies(dist lwipdocs)
|
|
endif()
|