2010-09-19 11:19:16 +00:00
|
|
|
|
2023-01-30 20:08:38 +00:00
|
|
|
add_subdirectory(lwip)
|
|
|
|
add_subdirectory(ip)
|
2010-09-19 11:19:16 +00:00
|
|
|
|
2010-11-04 21:06:20 +00:00
|
|
|
add_definitions(
|
|
|
|
-DNDIS40
|
|
|
|
-D_NTDRIVER_)
|
2010-09-19 11:19:16 +00:00
|
|
|
|
2010-10-30 16:08:19 +00:00
|
|
|
spec2def(tcpip.sys tcpip.spec)
|
2010-09-19 11:19:16 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
2023-01-30 20:08:38 +00:00
|
|
|
chew/workqueue.c
|
2010-09-19 11:19:16 +00:00
|
|
|
datalink/lan.c
|
|
|
|
tcpip/ainfo.c
|
|
|
|
tcpip/buffer.c
|
2014-10-08 21:58:10 +00:00
|
|
|
tcpip/cinfo.c
|
2010-09-19 11:19:16 +00:00
|
|
|
tcpip/dispatch.c
|
|
|
|
tcpip/fileobjs.c
|
2019-11-18 17:55:10 +00:00
|
|
|
tcpip/icmp.c
|
2010-09-19 11:19:16 +00:00
|
|
|
tcpip/iinfo.c
|
|
|
|
tcpip/info.c
|
|
|
|
tcpip/lock.c
|
|
|
|
tcpip/main.c
|
|
|
|
tcpip/ninfo.c
|
|
|
|
tcpip/proto.c
|
|
|
|
tcpip/tinfo.c
|
|
|
|
tcpip/wait.c
|
2014-02-09 17:28:01 +00:00
|
|
|
include/precomp.h)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(tcpip MODULE
|
2014-02-09 17:28:01 +00:00
|
|
|
${SOURCE}
|
2010-10-30 16:08:19 +00:00
|
|
|
tcpip.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/tcpip.def)
|
2010-09-19 11:19:16 +00:00
|
|
|
|
2023-01-30 20:08:38 +00:00
|
|
|
target_include_directories(tcpip BEFORE
|
2023-01-31 00:07:51 +00:00
|
|
|
PRIVATE include)
|
2023-01-30 20:08:38 +00:00
|
|
|
|
2023-01-31 00:07:51 +00:00
|
|
|
target_link_libraries(tcpip ip ${PSEH_LIB})
|
2010-11-04 21:06:20 +00:00
|
|
|
set_module_type(tcpip kernelmodedriver)
|
|
|
|
add_importlibs(tcpip ndis ntoskrnl hal)
|
2014-02-09 17:28:01 +00:00
|
|
|
add_pch(tcpip include/precomp.h SOURCE)
|
2011-05-14 20:54:46 +00:00
|
|
|
add_cd_file(TARGET tcpip DESTINATION reactos/system32/drivers FOR all)
|