summaryrefslogtreecommitdiffstats
path: root/Help/policy
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2021-02-16 15:29:37 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2021-02-18 13:30:55 (GMT)
commit79eaa908dc2ad339d5f92b10a30c4244975ab21a (patch)
tree822684b66b9a891c3c9e92ff1fdd8838fd28b45f /Help/policy
parent1f1fdff7fa9f51ccdc91232606a6ade20e02d83f (diff)
downloadCMake-79eaa908dc2ad339d5f92b10a30c4244975ab21a.zip
CMake-79eaa908dc2ad339d5f92b10a30c4244975ab21a.tar.gz
CMake-79eaa908dc2ad339d5f92b10a30c4244975ab21a.tar.bz2
cmListCommand: add a policy for failing on invalid indicies
Diffstat (limited to 'Help/policy')
-rw-r--r--Help/policy/CMP0121.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/Help/policy/CMP0121.rst b/Help/policy/CMP0121.rst
new file mode 100644
index 0000000..5ef2856
--- /dev/null
+++ b/Help/policy/CMP0121.rst
@@ -0,0 +1,21 @@
+CMP0121
+-------
+
+.. versionadded:: 3.21
+
+The :command:`list` command now detects invalid indicies.
+
+Prior to CMake version 3.21, the :command:`list` command's ``GET``,
+``INSERT``, ``SUBLIST``, and ``REMOVE_AT`` subcommands did not detect invalid
+index arguments.
+
+The ``OLD`` behavior of this policy is for invalid indicies to be treated as
+their integer value (if any) at the start of the string. For example,
+``2good4you`` is a ``2`` and ``not_an_integer`` is a ``0``. The ``NEW``
+behavior is for invalid indicies to trigger an error.
+
+This policy was introduced in CMake version 3.21. CMake version |release|
+warns when the policy is not set and uses ``OLD`` behavior. Use the
+:command:`cmake_policy` command to set it to ``OLD`` or ``NEW`` explicitly.
+
+.. include:: DEPRECATED.txt