summaryrefslogtreecommitdiffstats
path: root/Source/cmListCommand.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-12-14 20:50:10 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-12-14 20:50:10 (GMT)
commitf282f999c35b7f56826444a4537493e7dcbe547b (patch)
tree41c5bb278a5aed61308abc5b10c1d554fd54d8ee /Source/cmListCommand.h
parentad75cb7195dd87d462aa7b737bfdb2e1dfd1efc8 (diff)
downloadCMake-f282f999c35b7f56826444a4537493e7dcbe547b.zip
CMake-f282f999c35b7f56826444a4537493e7dcbe547b.tar.gz
CMake-f282f999c35b7f56826444a4537493e7dcbe547b.tar.bz2
BUG: fix bug 6081
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."
;
}