X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=reactos%2Fdrivers%2Fnetwork%2Ftcpip%2FCMakeLists.txt;h=5a8230a8e9ca140d610ab332d3abf20f1253d390;hp=988f0908492ecd49152911aaa6f63a97d9e979d2;hb=69718817713538373485cd4997dcd46cd2a89f6e;hpb=989c121257ec7bd9d4eab1726532b27a5807ade6 diff --git a/reactos/drivers/network/tcpip/CMakeLists.txt b/reactos/drivers/network/tcpip/CMakeLists.txt index 988f0908492..5a8230a8e9c 100644 --- a/reactos/drivers/network/tcpip/CMakeLists.txt +++ b/reactos/drivers/network/tcpip/CMakeLists.txt @@ -1,7 +1,8 @@ include_directories( BEFORE include - ${REACTOS_SOURCE_DIR}/lib/drivers/oskittcp/include) + ${REACTOS_SOURCE_DIR}/lib/drivers/lwip/src/include + ${REACTOS_SOURCE_DIR}/lib/drivers/lwip/src/include/ipv4) add_definitions( -DNDIS40 @@ -13,6 +14,7 @@ list(APPEND SOURCE datalink/lan.c tcpip/ainfo.c tcpip/buffer.c + tcpip/cinfo.c tcpip/dispatch.c tcpip/fileobjs.c tcpip/iinfo.c @@ -23,20 +25,22 @@ list(APPEND SOURCE tcpip/proto.c tcpip/tinfo.c tcpip/wait.c + include/precomp.h) + +add_library(tcpip SHARED + ${SOURCE} tcpip.rc ${CMAKE_CURRENT_BINARY_DIR}/tcpip.def) -add_library(tcpip SHARED ${SOURCE}) - target_link_libraries(tcpip ip - oskittcp + lwip ${PSEH_LIB} chew) set_module_type(tcpip kernelmodedriver) add_importlibs(tcpip ndis ntoskrnl hal) -add_pch(tcpip include/precomp.h) +add_pch(tcpip include/precomp.h SOURCE) add_cd_file(TARGET tcpip DESTINATION reactos/system32/drivers FOR all)