|
|
@@ -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
|