Partial merge of the condrv_restructure branch, including:
[reactos.git] / reactos / dll / win32 / mswsock / CMakeLists.txt
1
2
3 add_definitions(-DLE)
4 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
5
6 spec2def(mswsock.dll mswsock.spec ADD_IMPORTLIB)
7
8 list(APPEND SOURCE
9 extensions.c
10 stubs.c
11 precomp.h)
12
13 add_library(mswsock SHARED
14 ${SOURCE}
15 mswsock.rc
16 ${CMAKE_CURRENT_BINARY_DIR}/mswsock.def)
17
18 set_module_type(mswsock win32dll UNICODE)
19 add_importlibs(mswsock ws2_32 msvcrt kernel32)
20 add_pch(mswsock precomp.h SOURCE)
21 add_cd_file(TARGET mswsock DESTINATION reactos/system32 FOR all)
22