Doc: Mention how to interrupt/continue qmake loops

Fixes: QTBUG-99559
Pick-to: 6.3
Change-Id: Ib88bc0f93d7c0d6b9bf9a342410395f5a79675e5
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
Joerg Bornemann 2022-01-05 17:01:18 +01:00
parent ae49252dbc
commit 4545d7d6a6

View File

@ -4008,6 +4008,10 @@
\snippet code/doc_src_qmake-manual.pro 65
Loops can be interrupted with \c{break()}. The \c{next()} statement skips
the remainder of the loop's body and continues execution with the next
iteration.
\section2 greaterThan(variablename, value)
Tests that the value of \c variablename is greater than \c value. First,