2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-08-02 00:14:16 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-08-02 00:14:16 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-08-02 00:14:16 +04:00
|
|
|
#ifndef cmSubdirDependsCommand_h
|
|
|
|
#define cmSubdirDependsCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmSubdirDependsCommand
|
2001-12-10 19:03:44 +03:00
|
|
|
* \brief Legacy command. Do not use.
|
2001-08-02 00:14:16 +04:00
|
|
|
*
|
2001-12-10 19:03:44 +03:00
|
|
|
* 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.
|
2001-08-02 00:14:16 +04:00
|
|
|
*/
|
|
|
|
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.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2001-08-02 00:14:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2007-10-10 19:47:43 +04:00
|
|
|
virtual const char* GetName() { return "subdir_depends";}
|
2001-08-02 00:14:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2007-01-24 21:45:42 +03:00
|
|
|
return "Deprecated. Does nothing.";
|
2001-08-02 00:14:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" subdir_depends(subdir dep1 dep2 ...)\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"Does not do anything. This command used to help projects order "
|
2001-12-10 19:03:44 +03:00
|
|
|
"parallel builds correctly. This functionality is now automatic.";
|
2001-08-02 00:14:16 +04:00
|
|
|
}
|
|
|
|
|
2006-09-01 17:51:28 +04:00
|
|
|
/** This command is kept for compatibility with older CMake versions. */
|
2006-08-31 21:20:12 +04:00
|
|
|
virtual bool IsDiscouraged()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2001-08-02 00:14:16 +04:00
|
|
|
cmTypeMacro(cmSubdirDependsCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|