2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-06-06 21:58:18 +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-06-06 21:58:18 +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-06-06 21:58:18 +04:00
|
|
|
#ifndef cmEnableTestingCommand_h
|
|
|
|
#define cmEnableTestingCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmEnableTestingCommand
|
|
|
|
* \brief Enable testing for this directory and below.
|
|
|
|
*
|
|
|
|
* Produce the output testfile. This produces a file in the build directory
|
|
|
|
* called CMakeTestfile with a syntax similar to CMakeLists.txt. It contains
|
|
|
|
* the SUBDIRS() and ADD_TEST() commands from the source CMakeLists.txt
|
|
|
|
* file with CMake variables expanded. Only the subdirs and tests
|
|
|
|
* within the valid control structures are replicated in Testfile
|
|
|
|
* (i.e. SUBDIRS() and ADD_TEST() commands within IF() commands that are
|
|
|
|
* not entered by CMake are not replicated in Testfile).
|
2012-08-13 21:42:58 +04:00
|
|
|
* Note that CTest expects to find this file in the build directory root;
|
2001-10-19 18:07:56 +04:00
|
|
|
* therefore, this command should be in the source directory root too.
|
2001-06-06 21:58:18 +04:00
|
|
|
*/
|
|
|
|
class cmEnableTestingCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual cmCommand* Clone()
|
2001-06-06 21:58:18 +04:00
|
|
|
{
|
|
|
|
return new cmEnableTestingCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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&,
|
|
|
|
cmExecutionStatus &);
|
2001-06-06 21:58:18 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetName() const { return "enable_testing";}
|
2001-06-06 21:58:18 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetTerseDocumentation() const
|
2001-06-06 21:58:18 +04:00
|
|
|
{
|
2003-02-15 02:47:16 +03:00
|
|
|
return "Enable testing for current directory and below.";
|
2001-06-06 21:58:18 +04:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-06-06 21:58:18 +04:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetFullDocumentation() const
|
2001-06-06 21:58:18 +04:00
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
" enable_testing()\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"Enables testing for this directory and below. "
|
2007-10-10 19:47:43 +04:00
|
|
|
"See also the add_test command. Note that ctest expects to find "
|
2003-02-15 02:47:16 +03:00
|
|
|
"a test file in the build directory root. Therefore, this command "
|
2005-11-16 18:37:02 +03:00
|
|
|
"should be in the source directory root.";
|
2001-06-06 21:58:18 +04:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-06-06 21:58:18 +04:00
|
|
|
cmTypeMacro(cmEnableTestingCommand, cmCommand);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-06-06 21:58:18 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|