mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

- Move more dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49449
13 lines
282 B
CMake
13 lines
282 B
CMake
|
|
set_unicode()
|
|
|
|
add_library(wsock32 SHARED stubs.c wsock32.rc wsock32.def)
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(wsock32.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
|
endif()
|
|
|
|
set_module_type(wsock32 win32dll)
|
|
|
|
add_importlibs(wsock32 ws2_32 kernel32 ntdll)
|
|
add_cab_target(wsock32 1)
|