2010-12-07 11:40:10 +00:00
|
|
|
|
2016-04-20 12:39:37 +00:00
|
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2015-03-14 23:33:29 +00:00
|
|
|
|
2010-12-07 11:40:10 +00:00
|
|
|
add_executable(ws2_32_winetest protocol.c sock.c testlist.c)
|
2011-09-04 17:33:34 +00:00
|
|
|
|
2022-05-25 22:37:23 +00:00
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
2020-04-16 12:59:38 +00:00
|
|
|
target_compile_options(ws2_32_winetest PRIVATE "-Wno-format")
|
2011-09-04 17:33:34 +00:00
|
|
|
endif()
|
2017-12-03 22:30:10 +00:00
|
|
|
|
|
|
|
set_module_type(ws2_32_winetest win32cui)
|
|
|
|
add_importlibs(ws2_32_winetest ws2_32 user32 msvcrt kernel32)
|
|
|
|
add_rostests_file(TARGET ws2_32_winetest)
|