reactos/dll/win32/ws2_32/CMakeLists.txt
Jérôme Gardou 23373acbb9 [CMAKE] Use modules instead of shared libraries
There is no need to compile our DLLs as shared libraries since we are
managing symbols exports and imports through spec files.

On my system, this reduces the configure-time by a factor of two.
2019-04-06 17:43:38 +02:00

58 lines
1.2 KiB
CMake

add_definitions(-DLE)
spec2def(ws2_32.dll ws2_32.spec ADD_IMPORTLIB)
include_directories(
inc
${REACTOS_SOURCE_DIR}/sdk/include/reactos/winsock)
list(APPEND SOURCE
src/addrconv.c
src/addrinfo.c
src/async.c
src/bhook.c
src/dcatalog.c
src/dcatitem.c
src/dllmain.c
src/dprocess.c
src/dprovide.c
src/dsocket.c
src/dthread.c
src/dupsock.c
src/enumprot.c
src/event.c
src/getproto.c
src/getxbyxx.c
src/ioctl.c
src/nscatalo.c
src/nscatent.c
src/nspinstl.c
src/nsprovid.c
src/nsquery.c
src/qos.c
src/qshelpr.c
src/rasdial.c
src/recv.c
src/rnr.c
#src/scihlpr.c
src/select.c
src/send.c
src/sockctrl.c
src/socklife.c
src/spinstal.c
src/sputil.c
src/startup.c
src/wsautil.c
inc/ws2_32.h)
add_library(ws2_32 MODULE
${SOURCE}
ws2_32.rc
${CMAKE_CURRENT_BINARY_DIR}/ws2_32.def)
set_module_type(ws2_32 win32dll)
target_link_libraries(ws2_32 ${PSEH_LIB})
add_importlibs(ws2_32 user32 advapi32 ws2help msvcrt kernel32 ntdll)
add_pch(ws2_32 inc/ws2_32.h SOURCE)
add_cd_file(TARGET ws2_32 DESTINATION reactos/system32 FOR all)