2001-01-11 16:04:28 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2000 National Library of Medicine
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See COPYRIGHT.txt for copyright details.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifndef cmTestsRule_h
|
|
|
|
#define cmTestsRule_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
#include "cmRuleMaker.h"
|
|
|
|
|
2001-01-11 16:04:28 +03:00
|
|
|
/** \class cmTestsRule
|
|
|
|
* \brief Specify a list of executables to build and which are
|
|
|
|
* identified as tests.
|
|
|
|
*
|
|
|
|
* cmTestsRule specifies a list of executables to be built by CMake.
|
|
|
|
* These executables are identified as tests. This rule is similar to
|
|
|
|
* the EXECUTABLES() rule.
|
|
|
|
*
|
|
|
|
* \sa cmExecutablesRule
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
class cmTestsRule : public cmRuleMaker
|
|
|
|
{
|
|
|
|
public:
|
2001-01-11 16:04:28 +03:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the rule.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual cmRuleMaker* Clone()
|
|
|
|
{
|
2001-01-11 16:04:28 +03:00
|
|
|
return new cmTestsRule;
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-01-11 16:04:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the rule is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual bool Invoke(std::vector<std::string>& args);
|
2001-01-11 16:04:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called at the end after all the information
|
|
|
|
* specified by the rules is accumulated.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual void FinalPass() { }
|
|
|
|
|
2001-01-11 16:04:28 +03:00
|
|
|
/**
|
|
|
|
* The name of the rule as specified in CMakeList.txt.
|
|
|
|
*/
|
|
|
|
virtual const char* GetName() {return "TESTS";}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2001-01-11 01:05:42 +03:00
|
|
|
virtual const char* TerseDocumentation()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-11 16:04:28 +03:00
|
|
|
return "Add a list of executables files that are run as tests.";
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
|
2001-01-11 16:04:28 +03:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
2001-01-11 01:05:42 +03:00
|
|
|
virtual const char* FullDocumentation()
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2001-01-11 16:04:28 +03:00
|
|
|
return
|
|
|
|
"TESTS(file1 file2 ...)";
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|