2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-05-02 22:15:29 +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.
|
2005-05-02 22:15:29 +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.
|
|
|
|
============================================================================*/
|
2005-05-02 22:15:29 +04:00
|
|
|
#ifndef cmCTestBuildCommand_h
|
|
|
|
#define cmCTestBuildCommand_h
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
#include "cmCTestHandlerCommand.h"
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2005-05-08 21:48:09 +04:00
|
|
|
class cmGlobalGenerator;
|
2009-01-14 21:01:38 +03:00
|
|
|
class cmCTestBuildHandler;
|
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();
|
|
|
|
~cmCTestBuildCommand();
|
2006-03-10 23:03:09 +03:00
|
|
|
|
2005-05-02 22:15:29 +04:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2006-03-10 23:03:09 +03:00
|
|
|
virtual cmCommand* Clone()
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2014-02-25 05:19:17 +04:00
|
|
|
virtual std::string GetName() const { return "ctest_build";}
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2009-01-14 21:01:38 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
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;
|
|
|
|
enum {
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmCTestGenericHandler* InitializeHandler();
|
2005-05-02 22:15:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|