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. */
|
2001-11-19 09:34:29 -05:00
|
|
|
#ifndef cmVariableRequiresCommand_h
|
|
|
|
#define cmVariableRequiresCommand_h
|
|
|
|
|
2017-04-11 22:00:21 +02:00
|
|
|
#include "cmConfigure.h"
|
2017-04-11 21:42:35 +02:00
|
|
|
|
2016-10-19 08:54:18 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2001-11-19 09:34:29 -05:00
|
|
|
#include "cmCommand.h"
|
2016-10-19 08:54:18 +02:00
|
|
|
|
|
|
|
class cmExecutionStatus;
|
2001-11-19 09:34:29 -05:00
|
|
|
|
|
|
|
class cmVariableRequiresCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
2016-06-27 21:25:27 +02:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmVariableRequiresCommand; }
|
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
2001-11-19 09:34:29 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|