2009-10-04 10:30:41 +03:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2009-10-04 10:30:41 +03:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2009-10-04 10:30:41 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2008-10-12 18:41:06 +02:00
|
|
|
#include "cmMarkAsAdvancedCommand.h"
|
|
|
|
|
|
|
|
// cmMarkAsAdvancedCommand
|
2016-07-09 11:21:54 +02:00
|
|
|
bool cmMarkAsAdvancedCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2008-10-12 18:41:06 +02:00
|
|
|
{
|
2016-07-09 11:21:54 +02:00
|
|
|
if (args.size() < 1) {
|
2008-10-12 18:41:06 +02:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2016-07-09 11:21:54 +02:00
|
|
|
unsigned int i = 0;
|
2008-10-12 18:41:06 +02:00
|
|
|
const char* value = "1";
|
|
|
|
bool overwrite = false;
|
2016-07-09 11:21:54 +02:00
|
|
|
if (args[0] == "CLEAR" || args[0] == "FORCE") {
|
2008-10-12 18:41:06 +02:00
|
|
|
overwrite = true;
|
2016-07-09 11:21:54 +02:00
|
|
|
if (args[0] == "CLEAR") {
|
2008-10-12 18:41:06 +02:00
|
|
|
value = "0";
|
|
|
|
}
|
2016-07-09 11:21:54 +02:00
|
|
|
i = 1;
|
|
|
|
}
|
|
|
|
for (; i < args.size(); ++i) {
|
2008-10-12 18:41:06 +02:00
|
|
|
std::string variable = args[i];
|
2015-08-17 11:37:30 +02:00
|
|
|
cmState* state = this->Makefile->GetState();
|
2016-07-09 11:21:54 +02:00
|
|
|
if (!state->GetCacheEntryValue(variable)) {
|
2016-03-13 13:35:51 +01:00
|
|
|
this->Makefile->GetCMakeInstance()->AddCacheEntry(
|
2016-07-09 11:21:54 +02:00
|
|
|
variable, 0, 0, cmState::UNINITIALIZED);
|
2008-10-12 18:41:06 +02:00
|
|
|
overwrite = true;
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
|
|
|
if (!state->GetCacheEntryValue(variable)) {
|
2008-10-12 18:41:06 +02:00
|
|
|
cmSystemTools::Error("This should never happen...");
|
|
|
|
return false;
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
|
|
|
if (!state->GetCacheEntryProperty(variable, "ADVANCED") || overwrite) {
|
2015-08-17 11:37:30 +02:00
|
|
|
state->SetCacheEntryProperty(variable, "ADVANCED", value);
|
2008-10-12 18:41:06 +02:00
|
|
|
}
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2008-10-12 18:41:06 +02:00
|
|
|
return true;
|
|
|
|
}
|