diff --git a/Help/manual/cmake-generator-expressions.7.rst b/Help/manual/cmake-generator-expressions.7.rst index cbeb348429..27bf7d10e9 100644 --- a/Help/manual/cmake-generator-expressions.7.rst +++ b/Help/manual/cmake-generator-expressions.7.rst @@ -63,12 +63,14 @@ Logical Operators String Comparisons ------------------ -``$`` - ``1`` if ``a`` is STREQUAL ``b``, else ``0`` -``$`` - ``1`` if ``a`` is EQUAL ``b`` in a numeric comparison, else ``0`` -``$`` - ``1`` if ``a`` is IN_LIST ``b``, else ``0`` +``$`` + ``1`` if ``string1`` and ``string2`` are equal, else ``0``. + The comparison is case-sensitive. +``$`` + ``1`` if ``value1`` and ``value2`` are numerically equal, else ``0`` +``$`` + ``1`` if ``string`` is member of the comma-separated ``list``, else ``0``. + Uses case-sensitive comparisons. ``$`` ``1`` if ``v1`` is a version less than ``v2``, else ``0``. ``$``