diff options
author | Brad King <brad.king@kitware.com> | 2023-06-28 11:51:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-06-28 11:51:37 (GMT) |
commit | 60b393096f4ee6c07e44b9886d309103ed0da509 (patch) | |
tree | 50696f887cb93a2b63d87762b351a54085b1c95d /Help/command/list.rst | |
parent | f9fe9099ab1b02239f5904c8c4ca477f63de1f2c (diff) | |
download | CMake-60b393096f4ee6c07e44b9886d309103ed0da509.zip CMake-60b393096f4ee6c07e44b9886d309103ed0da509.tar.gz CMake-60b393096f4ee6c07e44b9886d309103ed0da509.tar.bz2 |
Help: Link to cmake-language(7) list docs from list() command docs
Fixes: #25036
Diffstat (limited to 'Help/command/list.rst')
-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 |