summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
Diffstat (limited to 'qmake')
-rw-r--r--qmake/doc/src/qmake-manual.qdoc4
1 files changed, 4 insertions, 0 deletions
diff --git a/qmake/doc/src/qmake-manual.qdoc b/qmake/doc/src/qmake-manual.qdoc
index 9d3d15b9c1..f51ed0efc2 100644
--- a/qmake/doc/src/qmake-manual.qdoc
+++ b/qmake/doc/src/qmake-manual.qdoc
@@ -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,