mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 03:27:31 +00:00
2cc0229ae2
- Remove unnecessary use of allow_warnings - Do not hide warnings that indicate actual problems in setuapi (non-Wine test, should move to apitests) and winmm (Wine bugs, fixed upstream) svn path=/trunk/; revision=62569
10 lines
316 B
CMake
10 lines
316 B
CMake
|
|
add_executable(ws2_32_winetest protocol.c sock.c testlist.c)
|
|
set_module_type(ws2_32_winetest win32cui)
|
|
add_importlibs(ws2_32_winetest ws2_32 user32 msvcrt kernel32)
|
|
add_cd_file(TARGET ws2_32_winetest DESTINATION reactos/bin FOR all)
|
|
|
|
if(NOT MSVC)
|
|
add_target_compile_flags(ws2_32_winetest "-Wno-format")
|
|
endif()
|