diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-02-15 08:05:55 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-02-15 08:05:55 -0500 |
commit | 79b7e0c37cb60a44b4311e47a1dcc575dedd5acb (patch) | |
tree | 09cb51c32a98d3649b454155e21c10437b992e6f /Modules | |
parent | 92cfb5233651209e0a16318a7293ee413fb50cb3 (diff) | |
download | cmake-79b7e0c37cb60a44b4311e47a1dcc575dedd5acb.tar.gz |
ENH: remove warning suppressions for borland compiler, projects wanting this should use -w-, the default warning level is used for all other compilers. Used to be -w- -whid -waus -wpar
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Platform/Windows-bcc32.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Platform/Windows-bcc32.cmake b/Modules/Platform/Windows-bcc32.cmake index f265c64b67..8265cf9d00 100644 --- a/Modules/Platform/Windows-bcc32.cmake +++ b/Modules/Platform/Windows-bcc32.cmake @@ -74,12 +74,12 @@ SET(CMAKE_CREATE_WIN32_EXE "-tW -tWM" ) # extra flags for a console app SET(CMAKE_CREATE_CONSOLE_EXE "-tWC" ) -SET (CMAKE_CXX_FLAGS_INIT "-w- -whid -waus -wpar -tWM") +SET (CMAKE_CXX_FLAGS_INIT "-tWM") SET (CMAKE_CXX_FLAGS_DEBUG_INIT "-Od -v") SET (CMAKE_CXX_FLAGS_MINSIZEREL_INIT "-O1 -DNDEBUG") SET (CMAKE_CXX_FLAGS_RELEASE_INIT "-O2 -DNDEBUG") SET (CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT "-Od") -SET (CMAKE_C_FLAGS_INIT "-w- -whid -waus -tWM") +SET (CMAKE_C_FLAGS_INIT "-tWM") SET (CMAKE_C_FLAGS_DEBUG_INIT "-Od -v") SET (CMAKE_C_FLAGS_MINSIZEREL_INIT "-O1 -DNDEBUG") SET (CMAKE_C_FLAGS_RELEASE_INIT "-O2 -DNDEBUG") |