summaryrefslogtreecommitdiffstats
path: root/Source/cmListCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmListCommand.h')
-rw-r--r--Source/cmListCommand.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmListCommand.h b/Source/cmListCommand.h
index 735a41b..ff5ebc8 100644
--- a/Source/cmListCommand.h
+++ b/Source/cmListCommand.h
@@ -87,6 +87,11 @@ public:
"REMOVE_AT will remove the items at the given indices.\n"
"REVERSE reverses the contents of the list in-place.\n"
"SORT sorts the list in-place alphabetically.\n"
+ "NOTE: A list in cmake is a ; separated group of strings. "
+ "To create a list the set command can be used. For example, "
+ "set(var a b c d e) creates a list with a;b;c;d;e, and "
+ "set(var \"a b c d e\") creates a string or a list with one "
+ "item in it."
;
}