summaryrefslogtreecommitdiffstats
path: root/Source/cmSubdirCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-01-24 18:45:42 (GMT)
committerBrad King <brad.king@kitware.com>2007-01-24 18:45:42 (GMT)
commitf71ad851d81649c59a8f4724d72ba4c935cdefce (patch)
tree0f99fc5c4ea9ecd94a2fa0b7ab222373b5ee4004 /Source/cmSubdirCommand.h
parent03a46e03810ea22c357033bd83508c47766592d6 (diff)
downloadCMake-f71ad851d81649c59a8f4724d72ba4c935cdefce.zip
CMake-f71ad851d81649c59a8f4724d72ba4c935cdefce.tar.gz
CMake-f71ad851d81649c59a8f4724d72ba4c935cdefce.tar.bz2
ENH: Patch from Alex to make deprecated command documentation more consistent.
Diffstat (limited to 'Source/cmSubdirCommand.h')
-rw-r--r--Source/cmSubdirCommand.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSubdirCommand.h b/Source/cmSubdirCommand.h
index fe7c392..c7cf1f2 100644
--- a/Source/cmSubdirCommand.h
+++ b/Source/cmSubdirCommand.h
@@ -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 "