summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorSebastian Lipponer <mail@sebastianlipponer.de>2019-04-06 08:37:44 (GMT)
committerSebastian Lipponer <mail@sebastianlipponer.de>2019-04-08 17:19:29 (GMT)
commit32d7b0cc2c1ffe26fe4d84adfa9d1e7595c9ec10 (patch)
tree5d5bd543ee5ffa52eec02c50662984d7e30a198c /Help
parent68b307caae74ad0c8b455434fe1444f0f61bf638 (diff)
downloadCMake-32d7b0cc2c1ffe26fe4d84adfa9d1e7595c9ec10.zip
CMake-32d7b0cc2c1ffe26fe4d84adfa9d1e7595c9ec10.tar.gz
CMake-32d7b0cc2c1ffe26fe4d84adfa9d1e7595c9ec10.tar.bz2
Help: Move entry to correct section in cmake-generator-expressions(7) manual
The generator expression $<REMOVE_DUPLICATES:list> is string-valued, not boolean-valued.
Diffstat (limited to 'Help')
-rw-r--r--Help/manual/cmake-generator-expressions.7.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/manual/cmake-generator-expressions.7.rst b/Help/manual/cmake-generator-expressions.7.rst
index 011631c..8f4c4fc 100644
--- a/Help/manual/cmake-generator-expressions.7.rst
+++ b/Help/manual/cmake-generator-expressions.7.rst
@@ -88,8 +88,6 @@ String Comparisons
``$<IN_LIST:string,list>``
``1`` if ``string`` is member of the semicolon-separated ``list``, else ``0``.
Uses case-sensitive comparisons.
-``$<REMOVE_DUPLICATES:list>``
- Removes duplicated items in the given ``list``.
``$<VERSION_LESS:v1,v2>``
``1`` if ``v1`` is a version less than ``v2``, else ``0``.
``$<VERSION_GREATER:v1,v2>``
@@ -293,6 +291,8 @@ String Transformations
``$<JOIN:list,string>``
Joins the list with the content of ``string``.
+``$<REMOVE_DUPLICATES:list>``
+ Removes duplicated items in the given ``list``.
``$<LOWER_CASE:string>``
Content of ``string`` converted to lower case.
``$<UPPER_CASE:string>``