diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-29 16:04:19 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-29 16:04:19 (GMT) |
commit | dbdb0adce84b7a1a37fb058f65c8734ff29429c3 (patch) | |
tree | 427d4db1f0985dafdbdf32c7e79721a9339cfd68 /Source/cmSetCommand.h | |
parent | 7359c6bd16b04c39c0925314862d5342b67d89c8 (diff) | |
download | CMake-dbdb0adce84b7a1a37fb058f65c8734ff29429c3.zip CMake-dbdb0adce84b7a1a37fb058f65c8734ff29429c3.tar.gz CMake-dbdb0adce84b7a1a37fb058f65c8734ff29429c3.tar.bz2 |
ENH: add ability to use ; separated lists in SET and expand them for addexecutable and addlibrary
Diffstat (limited to 'Source/cmSetCommand.h')
-rw-r--r-- | Source/cmSetCommand.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmSetCommand.h b/Source/cmSetCommand.h index f89e34a..720a805 100644 --- a/Source/cmSetCommand.h +++ b/Source/cmSetCommand.h @@ -73,7 +73,9 @@ public: " TYPE and DOCSTRING are required. If TYPE is INTERNAL, then the " " VALUE is Always written into the cache, replacing any values " "existing in the cache. If it is not a CACHE VAR, then this always " - "writes into the current makefile."; + "writes into the current makefile.\n" + "An optional syntax is SET(VAR VALUE1 ... VALUEN).\n" + "In this case VAR is set to a ; separated list of values."; } cmTypeMacro(cmSetCommand, cmCommand); |