mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
466fc93fa7
- Make static libs out of the idl files. - Improve wshirda, wshtcpip and wsock32. - Include bmfd into build. svn path=/branches/cmake-bringup/; revision=48956
10 lines
262 B
CMake
10 lines
262 B
CMake
|
|
add_definitions(-DUNICODE -D_UNICODE)
|
|
|
|
add_library(wsock32 SHARED stubs.c wsock32.rc)
|
|
|
|
set_module_type(wsock32 win32dll)
|
|
|
|
target_link_libraries(wsock32 ${CMAKE_CURRENT_SOURCE_DIR}/wsock32.def)
|
|
add_importlibs(wsock32 ntdll ws2_32)
|
|
add_dependencies(wsock32 psdk)
|