ENH: Patch from Alex to make deprecated command documentation more consistent.

This commit is contained in:
Brad King
2007-01-24 13:45:42 -05:00
parent 03a46e0381
commit f71ad851d8
11 changed files with 16 additions and 22 deletions

View File

@@ -53,7 +53,7 @@ public:
*/
virtual const char* GetTerseDocumentation()
{
return "Add a list of subdirectories to the build.";
return "Deprecated. Use the ADD_SUBDIRECTORY() command instead.";
}
/**
@@ -62,6 +62,7 @@ public:
virtual const char* GetFullDocumentation()
{
return
"Add a list of subdirectories to the build.\n";
" SUBDIRS(dir1 dir2 ..."
"[EXCLUDE_FROM_ALL exclude_dir1 exclude_dir2 ...] [PREORDER] )\n"
"Add a list of subdirectories to the build. The ADD_SUBDIRECTORY "