- 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
add_cd_file(TARGET setupapi_winetest DESTINATION reactos/bin FOR all)
if(NOT MSVC)
- add_target_compile_flags(setupapi_winetest "-Wno-format")
+ add_target_compile_flags(setupapi_winetest "-Wno-error=format")
endif()
add_cd_file(TARGET winmm_winetest DESTINATION reactos/bin FOR all)
if(NOT MSVC)
- add_target_compile_flags(winmm_winetest "-Wno-format -Wno-unused-but-set-variable")
+ add_target_compile_flags(winmm_winetest "-Wno-error=format -Wno-error=unused-but-set-variable")
endif()
if(NOT MSVC)
add_target_compile_flags(ws2_32_winetest "-Wno-format")
- allow_warnings(ws2_32_winetest)
endif()