summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-02-15 13:05:55 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-02-15 13:05:55 (GMT)
commit79b7e0c37cb60a44b4311e47a1dcc575dedd5acb (patch)
tree09cb51c32a98d3649b454155e21c10437b992e6f /Modules
parent92cfb5233651209e0a16318a7293ee413fb50cb3 (diff)
downloadCMake-79b7e0c37cb60a44b4311e47a1dcc575dedd5acb.zip
CMake-79b7e0c37cb60a44b4311e47a1dcc575dedd5acb.tar.gz
CMake-79b7e0c37cb60a44b4311e47a1dcc575dedd5acb.tar.bz2
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.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Platform/Windows-bcc32.cmake b/Modules/Platform/Windows-bcc32.cmake
index f265c64..8265cf9 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")