2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-05-02 22:15:29 +04:00
|
|
|
#ifndef cmCTestConfigureCommand_h
|
|
|
|
#define cmCTestConfigureCommand_h
|
|
|
|
|
2016-08-24 23:01:40 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
#include "cmCTestHandlerCommand.h"
|
2016-08-24 23:01:40 +03:00
|
|
|
#include "cmTypeMacro.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class cmCTestGenericHandler;
|
|
|
|
class cmCommand;
|
2005-05-02 22:15:29 +04:00
|
|
|
|
|
|
|
/** \class cmCTestConfigure
|
|
|
|
* \brief Run a ctest script
|
|
|
|
*
|
|
|
|
* cmCTestConfigureCommand defineds the command to configures the project.
|
|
|
|
*/
|
2006-03-29 21:01:24 +04:00
|
|
|
class cmCTestConfigureCommand : public cmCTestHandlerCommand
|
2005-05-02 22:15:29 +04:00
|
|
|
{
|
|
|
|
public:
|
2008-12-30 17:13:02 +03:00
|
|
|
cmCTestConfigureCommand();
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2005-05-02 22:15:29 +04:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCommand* Clone() CM_OVERRIDE
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
2005-05-02 22:15:29 +04:00
|
|
|
cmCTestConfigureCommand* ni = new cmCTestConfigureCommand;
|
2006-03-10 23:03:09 +03:00
|
|
|
ni->CTest = this->CTest;
|
|
|
|
ni->CTestScriptHandler = this->CTestScriptHandler;
|
2005-05-02 22:15:29 +04:00
|
|
|
return ni;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-05-02 22:15:29 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "ctest_configure"; }
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmTypeMacro(cmCTestConfigureCommand, cmCTestHandlerCommand);
|
|
|
|
|
|
|
|
protected:
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCTestGenericHandler* InitializeHandler() CM_OVERRIDE;
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
enum
|
|
|
|
{
|
2008-12-30 17:13:02 +03:00
|
|
|
ctc_FIRST = ct_LAST,
|
|
|
|
ctc_OPTIONS,
|
|
|
|
ctc_LAST
|
|
|
|
};
|
2005-05-02 22:15:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|