summaryrefslogtreecommitdiff
path: root/CompileFlags.cmake
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-06-25 16:41:57 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2009-06-25 16:41:57 -0400
commit7491f52992450bc6853c44c28db646c6176cbfd0 (patch)
tree3ec314d959220760927dc3741e8e51bc64267471 /CompileFlags.cmake
parent953439f738e98b463e2583cdbe1c756a7045eacb (diff)
downloadcmake-7491f52992450bc6853c44c28db646c6176cbfd0.tar.gz
ENH: first pass at VS 10, can bootstrap CMake, but many tests still fail
Diffstat (limited to 'CompileFlags.cmake')
-rw-r--r--CompileFlags.cmake7
1 files changed, 5 insertions, 2 deletions
diff --git a/CompileFlags.cmake b/CompileFlags.cmake
index 59f335d871..236dfb267b 100644
--- a/CompileFlags.cmake
+++ b/CompileFlags.cmake
@@ -10,9 +10,12 @@ ENDIF(CMAKE_GENERATOR MATCHES "Visual Studio 6")
INCLUDE (${CMAKE_ROOT}/Modules/CMakeBackwardCompatibilityCXX.cmake)
# Disable deprecation warnings for standard C functions.
-IF(MSVC80 OR MSVC90)
+# really only needed for newer versions of VS, but should
+# not hurt other versions, and this will work into the
+# future
+IF(MSVC)
ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE)
-ENDIF(MSVC80 OR MSVC90)
+ENDIF(MSVC)
#silence duplicate symbol warnings on AIX
IF(CMAKE_SYSTEM MATCHES "AIX.*")