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