Browse Source

BUG: fix bug 6081

Bill Hoffman 18 years ago
parent
commit
f282f999c3
1 changed files with 5 additions and 0 deletions
  1. 5 0
      Source/cmListCommand.h

+ 5 - 0
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."
       ;
     }