2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-12-21 19:14:47 +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.
|
2002-12-21 19:14:47 +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.
|
|
|
|
============================================================================*/
|
2002-12-21 19:14:47 +03:00
|
|
|
#include "cmSetTargetPropertiesCommand.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2007-02-07 19:49:42 +03:00
|
|
|
#include "cmGlobalGenerator.h"
|
2002-12-21 19:14:47 +03:00
|
|
|
|
|
|
|
// cmSetTargetPropertiesCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmSetTargetPropertiesCommand::InitialPass(
|
|
|
|
std::vector<std::string> const& args, cmExecutionStatus&)
|
2002-12-21 19:14:47 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() < 2) {
|
2002-12-21 19:14:47 +03:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-12-21 19:14:47 +03:00
|
|
|
|
|
|
|
// first collect up the list of files
|
|
|
|
std::vector<std::string> propertyPairs;
|
|
|
|
int numFiles = 0;
|
|
|
|
std::vector<std::string>::const_iterator j;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (j = args.begin(); j != args.end(); ++j) {
|
|
|
|
if (*j == "PROPERTIES") {
|
2002-12-21 19:14:47 +03:00
|
|
|
// now loop through the rest of the arguments, new style
|
|
|
|
++j;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (std::distance(j, args.end()) % 2 != 0) {
|
2015-01-25 17:35:26 +03:00
|
|
|
this->SetError("called with incorrect number of arguments.");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-01-25 17:36:59 +03:00
|
|
|
propertyPairs.insert(propertyPairs.end(), j, args.end());
|
2002-12-21 19:14:47 +03:00
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2015-03-25 19:38:37 +03:00
|
|
|
numFiles++;
|
2002-12-21 19:14:47 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (propertyPairs.empty()) {
|
|
|
|
this->SetError("called with illegal arguments, maybe missing "
|
|
|
|
"a PROPERTIES specifier?");
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-12-21 19:14:47 +03:00
|
|
|
// now loop over all the targets
|
|
|
|
int i;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = 0; i < numFiles; ++i) {
|
|
|
|
if (this->Makefile->IsAlias(args[i])) {
|
2013-07-12 11:14:31 +04:00
|
|
|
this->SetError("can not be used on an ALIAS target.");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
bool ret = cmSetTargetPropertiesCommand::SetOneTarget(
|
|
|
|
args[i], propertyPairs, this->Makefile);
|
|
|
|
if (!ret) {
|
2002-12-21 19:14:47 +03:00
|
|
|
std::string message = "Can not find target to add properties to: ";
|
|
|
|
message += args[i];
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(message);
|
2006-02-17 01:49:59 +03:00
|
|
|
return false;
|
2002-12-21 19:14:47 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-12-21 19:14:47 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmSetTargetPropertiesCommand::SetOneTarget(
|
|
|
|
const std::string& tname, std::vector<std::string>& propertyPairs,
|
|
|
|
cmMakefile* mf)
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmTarget* target = mf->FindTargetToUse(tname)) {
|
2006-12-07 17:45:32 +03:00
|
|
|
// now loop through all the props and set them
|
|
|
|
unsigned int k;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (k = 0; k < propertyPairs.size(); k = k + 2) {
|
|
|
|
target->SetProperty(propertyPairs[k], propertyPairs[k + 1].c_str());
|
2014-03-11 03:04:11 +04:00
|
|
|
target->CheckProperty(propertyPairs[k], mf);
|
2006-12-07 17:45:32 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-12-07 17:45:32 +03:00
|
|
|
// if file is not already in the makefile, then add it
|
2016-05-16 17:34:04 +03:00
|
|
|
else {
|
2006-12-07 17:45:32 +03:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-12-07 17:45:32 +03:00
|
|
|
return true;
|
|
|
|
}
|