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