mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
12 lines
439 B
CMake
12 lines
439 B
CMake
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
|
|
add_executable(ws2_32_winetest protocol.c sock.c testlist.c)
|
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
|
target_compile_options(ws2_32_winetest PRIVATE "-Wno-format")
|
|
endif()
|
|
|
|
set_module_type(ws2_32_winetest win32cui)
|
|
add_importlibs(ws2_32_winetest ws2_32 user32 msvcrt kernel32)
|
|
add_rostests_file(TARGET ws2_32_winetest)
|