mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
65ce146169
svn path=/branches/ros-csrss/; revision=57561
21 lines
469 B
CMake
21 lines
469 B
CMake
|
|
|
|
add_definitions(-DLE)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(mswsock.dll mswsock.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
extensions.c
|
|
stubs.c
|
|
mswsock.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/mswsock.def)
|
|
|
|
add_library(mswsock SHARED ${SOURCE})
|
|
|
|
set_module_type(mswsock win32dll UNICODE)
|
|
add_importlibs(mswsock ws2_32 msvcrt kernel32)
|
|
add_pch(mswsock precomp.h)
|
|
add_cd_file(TARGET mswsock DESTINATION reactos/system32 FOR all)
|
|
|