diff options
author | Brad King <brad.king@kitware.com> | 2013-10-18 15:54:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-22 13:09:51 (GMT) |
commit | 9f64fbf5b5f128580639f14e232430194c9326f1 (patch) | |
tree | 0f83aa908222265eb0bcd69c19ac2264bb8b19a1 /Source/cmSubdirDependsCommand.h | |
parent | 882c0f0b698e70be8b74aa498b62cb1fb22f3c24 (diff) | |
download | CMake-9f64fbf5b5f128580639f14e232430194c9326f1.zip CMake-9f64fbf5b5f128580639f14e232430194c9326f1.tar.gz CMake-9f64fbf5b5f128580639f14e232430194c9326f1.tar.bz2 |
Add policy CMP0029 to disallow subdir_depends
Diffstat (limited to 'Source/cmSubdirDependsCommand.h')
-rw-r--r-- | Source/cmSubdirDependsCommand.h | 34 |
1 files changed, 2 insertions, 32 deletions
diff --git a/Source/cmSubdirDependsCommand.h b/Source/cmSubdirDependsCommand.h index e6f1f8f..f78cfb7 100644 --- a/Source/cmSubdirDependsCommand.h +++ b/Source/cmSubdirDependsCommand.h @@ -14,45 +14,15 @@ #include "cmCommand.h" -/** \class cmSubdirDependsCommand - * \brief Legacy command. Do not use. - * - * cmSubdirDependsCommand has been left in CMake for compatability with - * projects already using it. Its functionality in supporting parallel - * builds is now automatic. The command does not do anything. - */ class cmSubdirDependsCommand : public cmCommand { public: - /** - * This is a virtual constructor for the command. - */ - virtual cmCommand* Clone() - { - return new cmSubdirDependsCommand; - } - - /** - * This is called when the command is first encountered in - * the CMakeLists.txt file. - */ + virtual cmCommand* Clone() { return new cmSubdirDependsCommand; } virtual bool InitialPass(std::vector<std::string> const& args, cmExecutionStatus &status); - - /** - * The name of the command as specified in CMakeList.txt. - */ virtual const char* GetName() const { return "subdir_depends";} - - /** This command is kept for compatibility with older CMake versions. */ - virtual bool IsDiscouraged() const - { - return true; - } - + virtual bool IsDiscouraged() const { return true; } cmTypeMacro(cmSubdirDependsCommand, cmCommand); }; - - #endif |