BUG: fix bug 6081

This commit is contained in:
Bill Hoffman 2007-12-14 15:50:10 -05:00
parent ad75cb7195
commit f282f999c3
1 changed files with 5 additions and 0 deletions

View File

@ -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."
;
}