diff options
author | Brad King <brad.king@kitware.com> | 2006-08-31 17:20:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-31 17:20:12 (GMT) |
commit | f12742d6cdffd62378a4bbf8eeff0c552d2d9093 (patch) | |
tree | 47d6106c36cff7c570473b9cf41ed53a2cbbf443 /Source/cmSubdirDependsCommand.h | |
parent | 2b33498c03877157faaacaa06f1a5e865b7d8537 (diff) | |
download | CMake-f12742d6cdffd62378a4bbf8eeff0c552d2d9093.zip CMake-f12742d6cdffd62378a4bbf8eeff0c552d2d9093.tar.gz CMake-f12742d6cdffd62378a4bbf8eeff0c552d2d9093.tar.bz2 |
ENH: Patch from Alex to add IsDiscouraged method for future use in generating separate documentation for old commands. Also modified documentation of MAKE_DIRECTORY and REMOVE commands to indicate they should not be used.
Diffstat (limited to 'Source/cmSubdirDependsCommand.h')
-rw-r--r-- | Source/cmSubdirDependsCommand.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmSubdirDependsCommand.h b/Source/cmSubdirDependsCommand.h index 3e97602..f178443 100644 --- a/Source/cmSubdirDependsCommand.h +++ b/Source/cmSubdirDependsCommand.h @@ -67,6 +67,12 @@ public: "parallel builds correctly. This functionality is now automatic."; } + /** This command is only kept for compatibility with older CMake versions. */ + virtual bool IsDiscouraged() + { + return true; + } + cmTypeMacro(cmSubdirDependsCommand, cmCommand); }; |