* Sync up to trunk head (r64716).
[reactos.git] / dll / win32 / ws2help / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/winsock)
3
4 spec2def(ws2help.dll ws2help.spec ADD_IMPORTLIB)
5
6 list(APPEND SOURCE
7 apc.c
8 context.c
9 dllmain.c
10 handle.c
11 notify.c
12 precomp.h)
13
14 add_library(ws2help SHARED
15 ${SOURCE}
16 ${CMAKE_CURRENT_BINARY_DIR}/ws2help.def)
17
18 set_module_type(ws2help win32dll)
19 add_importlibs(ws2help advapi32 ws2_32 msvcrt kernel32 ntdll)
20 add_pch(ws2help precomp.h SOURCE)
21 add_cd_file(TARGET ws2help DESTINATION reactos/system32 FOR all)