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 cmCTestBuildCommand_h
|
|
|
|
#define cmCTestBuildCommand_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>
|
|
|
|
#include <vector>
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2009-01-14 21:01:38 +03:00
|
|
|
class cmCTestBuildHandler;
|
2016-08-24 23:01:40 +03:00
|
|
|
class cmCTestGenericHandler;
|
|
|
|
class cmCommand;
|
|
|
|
class cmExecutionStatus;
|
|
|
|
class cmGlobalGenerator;
|
2005-05-08 21:48:09 +04:00
|
|
|
|
2005-05-02 22:15:29 +04:00
|
|
|
/** \class cmCTestBuild
|
|
|
|
* \brief Run a ctest script
|
|
|
|
*
|
|
|
|
* cmCTestBuildCommand defineds the command to build the project.
|
|
|
|
*/
|
2006-03-29 21:01:24 +04:00
|
|
|
class cmCTestBuildCommand : public cmCTestHandlerCommand
|
2005-05-02 22:15:29 +04:00
|
|
|
{
|
|
|
|
public:
|
2005-05-08 21:48:09 +04:00
|
|
|
cmCTestBuildCommand();
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmCTestBuildCommand() CM_OVERRIDE;
|
2006-03-10 23:03:09 +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
|
|
|
cmCTestBuildCommand* ni = new cmCTestBuildCommand;
|
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_build"; }
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmTypeMacro(cmCTestBuildCommand, cmCTestHandlerCommand);
|
2005-05-08 21:48:09 +04:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmGlobalGenerator* GlobalGenerator;
|
2006-03-29 21:01:24 +04:00
|
|
|
|
|
|
|
protected:
|
2009-01-14 21:01:38 +03:00
|
|
|
cmCTestBuildHandler* Handler;
|
2016-05-16 17:34:04 +03:00
|
|
|
enum
|
|
|
|
{
|
2009-01-14 21:01:38 +03:00
|
|
|
ctb_BUILD = ct_LAST,
|
|
|
|
ctb_NUMBER_ERRORS,
|
|
|
|
ctb_NUMBER_WARNINGS,
|
2009-11-04 00:46:30 +03:00
|
|
|
ctb_TARGET,
|
|
|
|
ctb_CONFIGURATION,
|
|
|
|
ctb_FLAGS,
|
|
|
|
ctb_PROJECT_NAME,
|
2009-01-14 21:01:38 +03:00
|
|
|
ctb_LAST
|
|
|
|
};
|
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCTestGenericHandler* InitializeHandler() CM_OVERRIDE;
|
2005-05-02 22:15:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|