[cmake-commits] hoffman committed cmListCommand.h 1.11 1.12

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Dec 14 15:50:13 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv10259

Modified Files:
	cmListCommand.h 
Log Message:
BUG: fix bug 6081


Index: cmListCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmListCommand.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- cmListCommand.h	10 Oct 2007 15:47:43 -0000	1.11
+++ cmListCommand.h	14 Dec 2007 20:50:10 -0000	1.12
@@ -87,6 +87,11 @@
       "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."
       ;
     }
 



More information about the Cmake-commits mailing list