2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-04-24 00:20:36 +04: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.
|
2004-04-24 00:20:36 +04: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.
|
|
|
|
============================================================================*/
|
2004-04-24 00:20:36 +04:00
|
|
|
#include "cmSetDirectoryPropertiesCommand.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
|
|
|
|
// cmSetDirectoryPropertiesCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmSetDirectoryPropertiesCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2004-04-24 00:20:36 +04:00
|
|
|
{
|
|
|
|
if(args.size() < 1 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
std::string errors;
|
2012-08-13 21:42:58 +04:00
|
|
|
bool ret =
|
|
|
|
cmSetDirectoryPropertiesCommand::RunCommand(this->Makefile,
|
|
|
|
args.begin() + 1,
|
2006-12-07 17:45:32 +03:00
|
|
|
args.end(), errors);
|
|
|
|
if (!ret)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(errors);
|
2006-12-07 17:45:32 +03:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2004-04-24 00:20:36 +04:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
bool cmSetDirectoryPropertiesCommand
|
|
|
|
::RunCommand(cmMakefile *mf,
|
|
|
|
std::vector<std::string>::const_iterator ait,
|
|
|
|
std::vector<std::string>::const_iterator aitend,
|
|
|
|
std::string &errors)
|
|
|
|
{
|
|
|
|
for (; ait != aitend; ait += 2 )
|
2004-04-24 00:20:36 +04:00
|
|
|
{
|
2006-12-07 17:45:32 +03:00
|
|
|
if ( ait +1 == aitend)
|
2004-04-24 00:20:36 +04:00
|
|
|
{
|
2006-12-07 17:45:32 +03:00
|
|
|
errors = "Wrong number of arguments";
|
2004-04-24 00:20:36 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const std::string& prop = *ait;
|
|
|
|
const std::string& value = *(ait+1);
|
|
|
|
if ( prop == "VARIABLES" )
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
errors =
|
2006-12-07 17:45:32 +03:00
|
|
|
"Variables and cache variables should be set using SET command";
|
2004-04-24 00:20:36 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if ( prop == "MACROS" )
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
errors =
|
2006-12-07 17:45:32 +03:00
|
|
|
"Commands and macros cannot be set using SET_CMAKE_PROPERTIES";
|
2004-04-24 00:20:36 +04:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
mf->SetProperty(prop, value.c_str());
|
2004-04-24 00:20:36 +04:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2004-04-24 00:20:36 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|