1continue 2-------- 3 4.. versionadded:: 3.2 5 6Continue to the top of enclosing foreach or while loop. 7 8.. code-block:: cmake 9 10 continue() 11 12The ``continue`` command allows a cmake script to abort the rest of a block 13in a :command:`foreach` or :command:`while` loop, and start at the top of 14the next iteration. 15 16See also the :command:`break` command. 17