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-26 18:28:27 -05:00
|
|
|
#include "cmMarkAsAdvancedCommand.h"
|
|
|
|
|
|
|
|
// cmMarkAsAdvancedCommand
|
2016-05-16 10:34:04 -04:00
|
|
|
bool cmMarkAsAdvancedCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2001-11-26 18:28:27 -05:00
|
|
|
{
|
2016-09-15 23:59:29 +02:00
|
|
|
if (args.empty()) {
|
2001-11-26 18:28:27 -05:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2002-03-29 14:20:32 -05:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
unsigned int i = 0;
|
2001-12-07 15:47:39 -05:00
|
|
|
const char* value = "1";
|
|
|
|
bool overwrite = false;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (args[0] == "CLEAR" || args[0] == "FORCE") {
|
2001-12-07 15:47:39 -05:00
|
|
|
overwrite = true;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (args[0] == "CLEAR") {
|
2001-12-07 15:47:39 -05:00
|
|
|
value = "0";
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
i = 1;
|
|
|
|
}
|
|
|
|
for (; i < args.size(); ++i) {
|
2001-11-26 18:28:27 -05:00
|
|
|
std::string variable = args[i];
|
2015-04-06 10:52:45 +02:00
|
|
|
cmState* state = this->Makefile->GetState();
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!state->GetCacheEntryValue(variable)) {
|
2015-10-10 15:03:41 +02:00
|
|
|
this->Makefile->GetCMakeInstance()->AddCacheEntry(
|
2016-06-27 22:44:16 +02:00
|
|
|
variable, CM_NULLPTR, CM_NULLPTR, cmState::UNINITIALIZED);
|
2002-09-12 09:56:48 -04:00
|
|
|
overwrite = true;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (!state->GetCacheEntryValue(variable)) {
|
2002-09-11 14:05:45 -04:00
|
|
|
cmSystemTools::Error("This should never happen...");
|
|
|
|
return false;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (!state->GetCacheEntryProperty(variable, "ADVANCED") || overwrite) {
|
2015-04-06 10:52:45 +02:00
|
|
|
state->SetCacheEntryProperty(variable, "ADVANCED", value);
|
2001-11-26 18:28:27 -05:00
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2001-11-26 18:28:27 -05:00
|
|
|
return true;
|
|
|
|
}
|