mirror of
https://github.com/reactos/reactos
synced 2025-10-05 16:02:58 +02:00
- Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future.
21 lines
481 B
CMake
21 lines
481 B
CMake
|
|
add_definitions(-DLE)
|
|
spec2def(mswsock.dll mswsock.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
extensions.c
|
|
mswhelper.c
|
|
nsplookup.c
|
|
stubs.c
|
|
precomp.h)
|
|
|
|
add_library(mswsock MODULE
|
|
${SOURCE}
|
|
mswsock.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/mswsock.def)
|
|
|
|
set_module_type(mswsock win32dll UNICODE)
|
|
add_importlibs(mswsock ws2_32 advapi32 dnsapi msvcrt kernel32 ntdll)
|
|
add_pch(mswsock precomp.h SOURCE)
|
|
add_cd_file(TARGET mswsock DESTINATION reactos/system32 FOR all)
|