summaryrefslogtreecommitdiffstats
path: root/Source/cmMarkAsAdvancedCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmMarkAsAdvancedCommand.h')
-rw-r--r--Source/cmMarkAsAdvancedCommand.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/Source/cmMarkAsAdvancedCommand.h b/Source/cmMarkAsAdvancedCommand.h
index defaf61..c78de7b 100644
--- a/Source/cmMarkAsAdvancedCommand.h
+++ b/Source/cmMarkAsAdvancedCommand.h
@@ -58,7 +58,7 @@ public:
*/
virtual const char* GetTerseDocumentation()
{
- return "Mark a cmake variable as advanced.";
+ return "Mark cmake cached variables as advanced.";
}
/**
@@ -67,12 +67,16 @@ public:
virtual const char* GetFullDocumentation()
{
return
- "MARK_AS_ADVANCED([CLEAR|FORCE]VAR VAR2 VAR... )\n"
- "Mark the named variables as advanced. An advanced variable will not be displayed in"
- " any of the cmake GUIs, unless the show advanced option is on. "
- "If CLEAR is the first argument advanced variables are changed back to unadvanced."
- "If FORCE is the first arguement, then the variable is made advanced."
- "If neither FORCE or CLEAR is specified, new values will be marked as advanced, but if the variable already has an advanced state, it will not be changed.";
+ " MARK_AS_ADVANCED([CLEAR|FORCE] VAR VAR2 VAR...)\n"
+ "Mark the named cached variables as advanced. An advanced variable "
+ "will not be displayed in any of the cmake GUIs unless the show "
+ "advanced option is on. "
+ "If CLEAR is the first argument advanced variables are changed back "
+ "to unadvanced. "
+ "If FORCE is the first arguement, then the variable is made advanced. "
+ "If neither FORCE or CLEAR is specified, new values will be marked as "
+ "advanced, but if the variable already has an advanced/non-advanced "
+ "state, it will not be changed.";
}
cmTypeMacro(cmMarkAsAdvancedCommand, cmCommand);