2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-11-27 02:28:27 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-11-27 02:28:27 +03:00
|
|
|
|
2009-09-28 19:43:28 +04: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.
|
|
|
|
============================================================================*/
|
2001-11-27 02:28:27 +03:00
|
|
|
#include "cmMarkAsAdvancedCommand.h"
|
|
|
|
|
|
|
|
// cmMarkAsAdvancedCommand
|
2006-05-12 20:29:09 +04:00
|
|
|
bool cmMarkAsAdvancedCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if(args.size() < 1 )
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
|
2001-12-07 23:47:39 +03:00
|
|
|
unsigned int i =0;
|
|
|
|
const char* value = "1";
|
|
|
|
bool overwrite = false;
|
|
|
|
if(args[0] == "CLEAR" || args[0] == "FORCE")
|
|
|
|
{
|
|
|
|
overwrite = true;
|
|
|
|
if(args[0] == "CLEAR")
|
|
|
|
{
|
|
|
|
value = "0";
|
|
|
|
}
|
|
|
|
i = 1;
|
|
|
|
}
|
|
|
|
for(; i < args.size(); ++i)
|
2001-11-27 02:28:27 +03:00
|
|
|
{
|
|
|
|
std::string variable = args[i];
|
2006-03-15 19:02:08 +03:00
|
|
|
cmCacheManager* manager = this->Makefile->GetCacheManager();
|
2006-05-12 20:29:09 +04:00
|
|
|
cmCacheManager::CacheIterator it =
|
|
|
|
manager->GetCacheIterator(variable.c_str());
|
2002-09-11 22:05:45 +04:00
|
|
|
if ( it.IsAtEnd() )
|
2001-12-07 23:47:39 +03:00
|
|
|
{
|
2007-04-10 23:55:49 +04:00
|
|
|
this->Makefile->GetCacheManager()
|
2007-04-11 18:00:56 +04:00
|
|
|
->AddCacheEntry(variable.c_str(), 0, 0,
|
|
|
|
cmCacheManager::UNINITIALIZED);
|
2002-09-12 17:56:48 +04:00
|
|
|
overwrite = true;
|
2001-12-07 23:47:39 +03:00
|
|
|
}
|
2002-09-11 22:05:45 +04:00
|
|
|
it.Find(variable.c_str());
|
|
|
|
if ( it.IsAtEnd() )
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("This should never happen...");
|
|
|
|
return false;
|
|
|
|
}
|
2002-09-17 19:48:52 +04:00
|
|
|
if ( !it.PropertyExists("ADVANCED") || overwrite )
|
2002-09-12 17:56:48 +04:00
|
|
|
{
|
|
|
|
it.SetProperty("ADVANCED", value);
|
|
|
|
}
|
2001-11-27 02:28:27 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|