summaryrefslogtreecommitdiff
path: root/Source/cmSubdirDependsCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-10-18 11:54:48 -0400
committerBrad King <brad.king@kitware.com>2013-10-22 09:09:51 -0400
commit9f64fbf5b5f128580639f14e232430194c9326f1 (patch)
tree0f83aa908222265eb0bcd69c19ac2264bb8b19a1 /Source/cmSubdirDependsCommand.h
parent882c0f0b698e70be8b74aa498b62cb1fb22f3c24 (diff)
downloadcmake-9f64fbf5b5f128580639f14e232430194c9326f1.tar.gz
Add policy CMP0029 to disallow subdir_depends
Diffstat (limited to 'Source/cmSubdirDependsCommand.h')
-rw-r--r--Source/cmSubdirDependsCommand.h34
1 files changed, 2 insertions, 32 deletions
diff --git a/Source/cmSubdirDependsCommand.h b/Source/cmSubdirDependsCommand.h
index e6f1f8fc15..f78cfb7016 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