diff options
author | Brad King <brad.king@kitware.com> | 2023-06-29 13:54:01 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-06-29 13:54:12 (GMT) |
commit | 088e07d1a75a89ad0e56f94a183981663c9b3950 (patch) | |
tree | 50696f887cb93a2b63d87762b351a54085b1c95d | |
parent | f9fe9099ab1b02239f5904c8c4ca477f63de1f2c (diff) | |
parent | 60b393096f4ee6c07e44b9886d309103ed0da509 (diff) | |
download | CMake-088e07d1a75a89ad0e56f94a183981663c9b3950.zip CMake-088e07d1a75a89ad0e56f94a183981663c9b3950.tar.gz CMake-088e07d1a75a89ad0e56f94a183981663c9b3950.tar.bz2 |
Merge topic 'doc-list-xref' into release-3.27
60b393096f Help: Link to cmake-language(7) list docs from list() command docs
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !8597
-rw-r--r-- | Help/command/list.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Help/command/list.rst b/Help/command/list.rst index 0c7a562..47d96a7 100644 --- a/Help/command/list.rst +++ b/Help/command/list.rst @@ -1,7 +1,7 @@ list ---- -List operations. +Operations on :ref:`semicolon-separated lists <CMake Language Lists>`. Synopsis ^^^^^^^^ @@ -56,6 +56,10 @@ propagation. (Note that macro arguments are not variables, and therefore cannot be used in ``LIST`` commands.) + Individual elements may not contain an unequal number of ``[`` and ``]`` + characters, and may not end in a backslash (``\``). + See :ref:`semicolon-separated lists <CMake Language Lists>` for details. + .. note:: When specifying index values, if ``<element index>`` is 0 or greater, it |