[CMAKE]
[reactos.git] / dll / win32 / wshtcpip / CMakeLists.txt
1
2 set_unicode()
3
4 include_directories(${REACTOS_SOURCE_DIR}/lib/tdilib)
5
6 spec2def(wshtcpip.dll wshtcpip.spec)
7
8 list(APPEND SOURCE
9 wshtcpip.c
10 wshtcpip.rc
11 ${CMAKE_CURRENT_BINARY_DIR}/wshtcpip.def)
12
13 add_library(wshtcpip SHARED ${SOURCE})
14
15 set_entrypoint(wshtcpip 0)
16
17 target_link_libraries(wshtcpip tdilib)
18 add_importlibs(wshtcpip ws2_32 kernel32 ntdll)
19 add_dependencies(wshtcpip psdk)
20 add_cd_file(TARGET wshtcpip DESTINATION reactos/system32 FOR all)