2005-05-02 22:15:29 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2005-05-02 22:15:29 +04:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#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.
|
|
|
|
*/
|
2008-05-12 17:11:51 +04:00
|
|
|
virtual const char* GetName() { return "ctest_build";}
|
2005-05-02 22:15:29 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2006-03-10 23:03:09 +03:00
|
|
|
virtual const char* GetTerseDocumentation()
|
2005-05-02 22:15:29 +04:00
|
|
|
{
|
2009-02-20 23:50:57 +03:00
|
|
|
return "Build the project.";
|
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
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2009-02-20 23:50:57 +03:00
|
|
|
" ctest_build([BUILD build_dir] [RETURN_VALUE res]\n"
|
|
|
|
" [NUMBER_ERRORS val] [NUMBER_WARNINGS val])\n"
|
|
|
|
"Builds the given build directory and stores results in Build.xml. "
|
|
|
|
"If no BUILD is given, the CTEST_BINARY_DIRECTORY variable is used. "
|
|
|
|
"The RETURN_VALUE option specifies a variable in which to store the "
|
|
|
|
"return value of the native build tool. "
|
|
|
|
"The NUMBER_ERRORS and NUMBER_WARNINGS options specify variables in "
|
|
|
|
"which to store the number of build errors and warnings detected."
|
|
|
|
;
|
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,
|
|
|
|
ctb_LAST
|
|
|
|
};
|
|
|
|
|
2006-03-29 21:01:24 +04:00
|
|
|
cmCTestGenericHandler* InitializeHandler();
|
2005-05-02 22:15:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|