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. */
|
2004-09-07 17:17:15 +04:00
|
|
|
#ifndef cmCTestConfigureHandler_h
|
|
|
|
#define cmCTestConfigureHandler_h
|
|
|
|
|
2016-08-24 23:01:40 +03:00
|
|
|
#include <cmConfigure.h>
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-08-24 23:01:40 +03:00
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
#include "cmTypeMacro.h"
|
2004-09-07 17:17:15 +04:00
|
|
|
|
|
|
|
/** \class cmCTestConfigureHandler
|
|
|
|
* \brief A class that handles ctest -S invocations
|
|
|
|
*
|
|
|
|
*/
|
2005-01-27 19:43:22 +03:00
|
|
|
class cmCTestConfigureHandler : public cmCTestGenericHandler
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
|
|
|
public:
|
2005-06-17 21:04:56 +04:00
|
|
|
cmTypeMacro(cmCTestConfigureHandler, cmCTestGenericHandler);
|
2004-09-07 17:17:15 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The main entry point for this class
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
int ProcessHandler() CM_OVERRIDE;
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2004-09-07 17:17:15 +04:00
|
|
|
cmCTestConfigureHandler();
|
2005-06-17 21:04:56 +04:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
void Initialize() CM_OVERRIDE;
|
2004-09-07 17:17:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|