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. */
|
2001-05-09 16:51:54 +04:00
|
|
|
#ifndef cmLoadCacheCommand_h
|
|
|
|
#define cmLoadCacheCommand_h
|
|
|
|
|
2004-02-22 21:14:59 +03:00
|
|
|
#include "cmCommand.h"
|
|
|
|
|
2001-05-09 16:51:54 +04:00
|
|
|
/** \class cmLoadCacheCommand
|
|
|
|
* \brief load a cache file
|
|
|
|
*
|
|
|
|
* cmLoadCacheCommand loads the non internal values of a cache file
|
|
|
|
*/
|
|
|
|
class cmLoadCacheCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmLoadCacheCommand; }
|
2001-05-09 16:51:54 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
2001-05-09 16:51:54 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "load_cache"; }
|
2001-05-09 16:51:54 +04:00
|
|
|
|
|
|
|
cmTypeMacro(cmLoadCacheCommand, cmCommand);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
protected:
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string> VariablesToRead;
|
2002-11-21 02:00:02 +03:00
|
|
|
std::string Prefix;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-11-21 02:00:02 +03:00
|
|
|
bool ReadWithPrefix(std::vector<std::string> const& args);
|
|
|
|
void CheckLine(const char* line);
|
2001-05-09 16:51:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|