mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +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
49 lines
1.1 KiB
CMake
49 lines
1.1 KiB
CMake
|
|
set(LWIP_DIR ${CMAKE_CURRENT_SOURCE_DIR}/lwip)
|
|
set(LWIP_INCLUDE_DIRS
|
|
${LWIP_DIR}/src/include
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include/lwip
|
|
)
|
|
include(${LWIP_DIR}/src/Filelists.cmake)
|
|
add_dependencies(lwipcore xdk)
|
|
add_subdirectory(ip)
|
|
|
|
add_definitions(
|
|
-DNDIS40
|
|
-D_NTDRIVER_)
|
|
|
|
spec2def(tcpip.sys tcpip.spec)
|
|
|
|
list(APPEND SOURCE
|
|
chew/workqueue.c
|
|
datalink/lan.c
|
|
tcpip/ainfo.c
|
|
tcpip/buffer.c
|
|
tcpip/cinfo.c
|
|
tcpip/dispatch.c
|
|
tcpip/fileobjs.c
|
|
tcpip/icmp.c
|
|
tcpip/iinfo.c
|
|
tcpip/info.c
|
|
tcpip/lock.c
|
|
tcpip/main.c
|
|
tcpip/ninfo.c
|
|
tcpip/proto.c
|
|
tcpip/tinfo.c
|
|
tcpip/wait.c
|
|
include/lwip/precomp.h)
|
|
|
|
add_library(tcpip MODULE
|
|
${SOURCE}
|
|
tcpip.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/tcpip.def)
|
|
|
|
target_include_directories(tcpip BEFORE
|
|
PRIVATE ${LWIP_INCLUDE_DIRS}
|
|
PRIVATE include)
|
|
|
|
target_link_libraries(tcpip ip ${PSEH_LIB})
|
|
set_module_type(tcpip kernelmodedriver)
|
|
add_importlibs(tcpip ndis ntoskrnl hal)
|
|
add_pch(tcpip include/lwip/precomp.h SOURCE)
|
|
add_cd_file(TARGET tcpip DESTINATION reactos/system32/drivers FOR all)
|