[KERNEL32]
[reactos.git] / reactos / dll / win32 / wshtcpip / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/tdilib)
3 spec2def(wshtcpip.dll wshtcpip.spec)
4
5 list(APPEND SOURCE
6 iflist.c
7 wshtcpip.c
8 wshtcpip.rc
9 ${CMAKE_CURRENT_BINARY_DIR}/wshtcpip.def)
10
11 add_library(wshtcpip SHARED ${SOURCE})
12 set_module_type(wshtcpip win32dll UNICODE)
13 target_link_libraries(wshtcpip tdilib)
14 add_importlibs(wshtcpip ws2_32 msvcrt kernel32 ntdll)
15 add_cd_file(TARGET wshtcpip DESTINATION reactos/system32 FOR all)