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