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