summaryrefslogtreecommitdiff
path: root/3.8.2/doc/cmake/html/_sources/command/math.rst.txt
diff options
context:
space:
mode:
Diffstat (limited to '3.8.2/doc/cmake/html/_sources/command/math.rst.txt')
-rw-r--r--3.8.2/doc/cmake/html/_sources/command/math.rst.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/3.8.2/doc/cmake/html/_sources/command/math.rst.txt b/3.8.2/doc/cmake/html/_sources/command/math.rst.txt
deleted file mode 100644
index f99dc3d..0000000
--- a/3.8.2/doc/cmake/html/_sources/command/math.rst.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-math
-----
-
-Mathematical expressions.
-
-::
-
- math(EXPR <output-variable> <math-expression>)
-
-``EXPR`` evaluates mathematical expression and returns result in the
-output variable. Example mathematical expression is ``5 * (10 + 13)``.
-Supported operators are ``+``, ``-``, ``*``, ``/``, ``%``, ``|``, ``&``,
-``^``, ``~``, ``<<``, ``>>``, and ``(...)``. They have the same meaning
-as they do in C code.