diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-10-09 19:48:59 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-10-09 19:48:59 (GMT) |
commit | f990777a605f200d00aa5ba980c1acbdc9446ed9 (patch) | |
tree | 0eb930f8cf5e3da811220f99f93f8bb780e611a0 /Source/cmSetCommand.h | |
parent | cb5763a410181512f762088a2de7338f65181170 (diff) | |
download | CMake-f990777a605f200d00aa5ba980c1acbdc9446ed9.zip CMake-f990777a605f200d00aa5ba980c1acbdc9446ed9.tar.gz CMake-f990777a605f200d00aa5ba980c1acbdc9446ed9.tar.bz2 |
added FORCE option
Diffstat (limited to 'Source/cmSetCommand.h')
-rw-r--r-- | Source/cmSetCommand.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmSetCommand.h b/Source/cmSetCommand.h index 2b55bd9..76a14d9 100644 --- a/Source/cmSetCommand.h +++ b/Source/cmSetCommand.h @@ -67,14 +67,15 @@ public: virtual const char* GetFullDocumentation() { return - "SET(VAR [VALUE] [CACHE TYPE DOCSTRING])\n" + "SET(VAR [VALUE] [CACHE TYPE DOCSTRING [FORCE]])\n" "Within CMAKE sets VAR to the value VALUE. VALUE is expanded before VAR " "is set to it. If CACHE is present, then the VAR is put in the cache." " TYPE and DOCSTRING are required. TYPE may be BOOL, PATH, FILEPATH, STRING, INTERNAL, " "or STATIC. 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.\n" + "writes into the current makefile. The FORCE option will overwrite" + "the CACHE value removing any changes from the USER.\n" "An optional syntax is SET(VAR VALUE1 ... VALUEN).\n" "In this case VAR is set to a ; separated list of values."; } |