summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeDetermineVSServicePack.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-04-10 15:01:46 (GMT)
committerBrad King <brad.king@kitware.com>2014-04-10 16:49:14 (GMT)
commit101515b958864cbcb42340d0d6d337fec9f44b18 (patch)
treeb321367d671a9754b6df713781f7f659346e4b06 /Modules/CMakeDetermineVSServicePack.cmake
parenta48de7d8506325e7f27c9dada578744e1ff3fb35 (diff)
downloadCMake-101515b958864cbcb42340d0d6d337fec9f44b18.zip
CMake-101515b958864cbcb42340d0d6d337fec9f44b18.tar.gz
CMake-101515b958864cbcb42340d0d6d337fec9f44b18.tar.bz2
CMakeDetermineVSServicePack: Format documentation
Also state explicitly that the module is deprecated.
Diffstat (limited to 'Modules/CMakeDetermineVSServicePack.cmake')
-rw-r--r--Modules/CMakeDetermineVSServicePack.cmake18
1 files changed, 8 insertions, 10 deletions
diff --git a/Modules/CMakeDetermineVSServicePack.cmake b/Modules/CMakeDetermineVSServicePack.cmake
index 353aed6..d11cdb8 100644
--- a/Modules/CMakeDetermineVSServicePack.cmake
+++ b/Modules/CMakeDetermineVSServicePack.cmake
@@ -2,15 +2,15 @@
# CMakeDetermineVSServicePack
# ---------------------------
#
-# Determine the Visual Studio service pack of the 'cl' in use.
+# Deprecated. Do not use.
#
-# The functionality of this module has been superseded by the platform
-# variable CMAKE_<LANG>_COMPILER_VERSION that contains the compiler
-# version number.
+# The functionality of this module has been superseded by the
+# :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable that contains
+# the compiler version number.
#
-# Usage:
+# Determine the Visual Studio service pack of the 'cl' in use.
#
-# ::
+# Usage::
#
# if(MSVC)
# include(CMakeDetermineVSServicePack)
@@ -21,14 +21,12 @@
# endif()
#
# Function DetermineVSServicePack sets the given variable to one of the
-# following values or an empty string if unknown:
-#
-# ::
+# following values or an empty string if unknown::
#
# vc80, vc80sp1
# vc90, vc90sp1
# vc100, vc100sp1
-# vc110, vc110sp1, vc110sp2
+# vc110, vc110sp1, vc110sp2, vc110sp3
#=============================================================================
# Copyright 2009-2013 Kitware, Inc.