cmake/Source/cmMarkAsAdvancedCommand.cxx

51 lines
1.7 KiB
C++
Raw Normal View History

2009-10-04 10:30:41 +03:00
/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2009-10-04 10:30:41 +03:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
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.
============================================================================*/
#include "cmMarkAsAdvancedCommand.h"
// cmMarkAsAdvancedCommand
2016-07-09 11:21:54 +02:00
bool cmMarkAsAdvancedCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus&)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 1) {
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
unsigned int i = 0;
const char* value = "1";
bool overwrite = false;
2016-07-09 11:21:54 +02:00
if (args[0] == "CLEAR" || args[0] == "FORCE") {
overwrite = true;
2016-07-09 11:21:54 +02:00
if (args[0] == "CLEAR") {
value = "0";
}
2016-07-09 11:21:54 +02:00
i = 1;
}
for (; i < args.size(); ++i) {
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);
overwrite = true;
2016-07-09 11:21:54 +02:00
}
if (!state->GetCacheEntryValue(variable)) {
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);
}
2016-07-09 11:21:54 +02:00
}
return true;
}