[ROSAPPS] put -Wno-unused-but-set-variable between a if(NOT MSVC) to really make MSVC happy this time / Get rid of -Wno-implicit-function-declaration (include juggling + add definitions) and -Wno-format-extra-args (shorten sprinf) in ncftp. / Fix rosperf build and add it to cmake build now.

svn path=/trunk/; revision=67439
This commit is contained in:
Daniel Reimer 2015-04-26 17:08:34 +00:00
parent 7338ca79c0
commit aa76a2c168
12 changed files with 27 additions and 13 deletions

View file

@ -4,5 +4,7 @@ add_executable(symdump symdump.c)
set_module_type(symdump win32cui)
target_link_libraries(symdump wine)
add_importlibs(symdump dbghelp shlwapi msvcrt kernel32)
add_compile_flags("-Wno-unused-but-set-variable")
if(NOT MSVC)
add_target_compile_flags(symdump "-Wno-unused-but-set-variable")
endif()
add_cd_file(TARGET symdump DESTINATION reactos/system32 FOR all)