Files
reactos/dll/win32/mswsock/CMakeLists.txt
Carl J. Bialorucki c9842e5aad Move /sdk/include/reactos/wine to /sdk/include/wine, reorder global includes, remove unneeded includes (#8258)
- 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.
2025-07-29 13:57:12 -06:00

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)