summaryrefslogtreecommitdiffstats
path: root/Help/prop_tgt
diff options
context:
space:
mode:
authorHong Xu <hong@topbug.net>2020-05-30 22:38:27 (GMT)
committerBrad King <brad.king@kitware.com>2020-06-01 14:51:34 (GMT)
commite8958d4742e4f9b954040c2ec190de002008f176 (patch)
treeb7f97b2a1879728c42f74a0076cb57d7a2005f72 /Help/prop_tgt
parent67dd68765700bbd6a981700c04f45b28cdc85587 (diff)
downloadCMake-e8958d4742e4f9b954040c2ec190de002008f176.zip
CMake-e8958d4742e4f9b954040c2ec190de002008f176.tar.gz
CMake-e8958d4742e4f9b954040c2ec190de002008f176.tar.bz2
Help: Clarify that no version of MSVC today support C standard levels
The current description sounds as if MSVC later than 2015 update 3 support C standard level, which is not true. This patch clarifies MSVC support.
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r--Help/prop_tgt/C_STANDARD.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/prop_tgt/C_STANDARD.rst b/Help/prop_tgt/C_STANDARD.rst
index e7f7904..6a05139 100644
--- a/Help/prop_tgt/C_STANDARD.rst
+++ b/Help/prop_tgt/C_STANDARD.rst
@@ -6,8 +6,8 @@ The C standard whose features are requested to build this target.
This property specifies the C standard whose features are requested
to build this target. For some compilers, this results in adding a
flag such as ``-std=gnu11`` to the compile line. For compilers that
-have no notion of a standard level, such as Microsoft Visual C++ before
-2015 Update 3, this has no effect.
+have no notion of a C standard level, such as all versions of
+MSVC known as of this version of CMake, this has no effect.
Supported values are ``90``, ``99`` and ``11``.