diff options
author | Brad King <brad.king@kitware.com> | 2018-10-24 14:39:28 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-10-24 14:39:39 (GMT) |
commit | 008cb6aa991a515cd31a9b7e6a5837555ff2d43a (patch) | |
tree | 1c1b234a3d67c6426efcacdae816172ccb388801 /Help/command/while.rst | |
parent | 2296ede5ad67ace711f3f9c2dff33ea1f9b9aeb4 (diff) | |
parent | c2efb3efcd083523a73a2a9721b7101fbfc0fe0f (diff) | |
download | CMake-008cb6aa991a515cd31a9b7e6a5837555ff2d43a.zip CMake-008cb6aa991a515cd31a9b7e6a5837555ff2d43a.tar.gz CMake-008cb6aa991a515cd31a9b7e6a5837555ff2d43a.tar.bz2 |
Merge topic 'scripting-commands'
c2efb3efcd Help: Revise docs on Scripting Commands
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2504
Diffstat (limited to 'Help/command/while.rst')
-rw-r--r-- | Help/command/while.rst | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/Help/command/while.rst b/Help/command/while.rst index 7509da3..a4957c1 100644 --- a/Help/command/while.rst +++ b/Help/command/while.rst @@ -3,15 +3,23 @@ while Evaluate a group of commands while a condition is true -:: +.. code-block:: cmake - while(condition) - COMMAND1(ARGS ...) - COMMAND2(ARGS ...) - ... - endwhile(condition) + while(<condition>) + <commands> + endwhile() All commands between while and the matching :command:`endwhile` are recorded without being invoked. Once the :command:`endwhile` is evaluated, the -recorded list of commands is invoked as long as the condition is true. The -condition is evaluated using the same logic as the :command:`if` command. +recorded list of commands is invoked as long as the ``<condition>`` is true. + +The ``<condition>`` has the same syntax and is evaluated using the same logic +as described at length for the :command:`if` command. + +The commands :command:`break` and :command:`continue` provide means to +escape from the normal control flow. + +Per legacy, the :command:`endwhile` command admits +an optional ``<condition>`` argument. +If used, it must be a verbatim repeat of the argument of the opening +``while`` command. |