2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-03-29 18:06:30 +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-03-29 18:06:30 +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-03-29 18:06:30 +03:00
|
|
|
#include "cmSetSourceFilesPropertiesCommand.h"
|
|
|
|
|
2004-02-22 21:14:59 +03:00
|
|
|
#include "cmSourceFile.h"
|
|
|
|
|
2002-03-29 18:06:30 +03:00
|
|
|
// cmSetSourceFilesPropertiesCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmSetSourceFilesPropertiesCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2002-03-29 18:06:30 +03:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if(args.size() < 2 )
|
2002-03-29 18:06:30 +03:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
|
2006-12-11 18:26:10 +03:00
|
|
|
// break the arguments into source file names and properties
|
|
|
|
int numFiles = 0;
|
|
|
|
std::vector<std::string>::const_iterator j;
|
|
|
|
j = args.begin();
|
|
|
|
// old style allows for specifier before PROPERTIES keyword
|
2008-05-08 23:49:53 +04:00
|
|
|
while (j != args.end() &&
|
|
|
|
*j != "ABSTRACT" &&
|
2006-12-11 18:26:10 +03:00
|
|
|
*j != "WRAP_EXCLUDE" &&
|
|
|
|
*j != "GENERATED" &&
|
|
|
|
*j != "COMPILE_FLAGS" &&
|
|
|
|
*j != "OBJECT_DEPENDS" &&
|
|
|
|
*j != "PROPERTIES")
|
|
|
|
{
|
|
|
|
numFiles++;
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
|
|
|
|
// now call the worker function
|
|
|
|
std::string errors;
|
|
|
|
bool ret =
|
|
|
|
cmSetSourceFilesPropertiesCommand
|
|
|
|
::RunCommand(this->Makefile,
|
|
|
|
args.begin(),
|
|
|
|
args.begin() + numFiles,
|
|
|
|
args.begin() + numFiles,
|
|
|
|
args.end(), errors);
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
this->SetError(errors.c_str());
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmSetSourceFilesPropertiesCommand
|
|
|
|
::RunCommand(cmMakefile *mf,
|
|
|
|
std::vector<std::string>::const_iterator filebeg,
|
|
|
|
std::vector<std::string>::const_iterator fileend,
|
|
|
|
std::vector<std::string>::const_iterator propbeg,
|
|
|
|
std::vector<std::string>::const_iterator propend,
|
|
|
|
std::string &errors)
|
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
std::vector<std::string> propertyPairs;
|
2003-06-03 18:30:23 +04:00
|
|
|
bool generated = false;
|
2002-03-29 18:06:30 +03:00
|
|
|
std::vector<std::string>::const_iterator j;
|
2006-12-11 18:26:10 +03:00
|
|
|
// build the property pairs
|
|
|
|
for(j= propbeg; j != propend;++j)
|
2002-03-29 18:06:30 +03:00
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
// old style allows for specifier before PROPERTIES keyword
|
2002-03-29 18:06:30 +03:00
|
|
|
if(*j == "ABSTRACT")
|
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
propertyPairs.push_back("ABSTRACT");
|
|
|
|
propertyPairs.push_back("1");
|
2002-03-29 18:06:30 +03:00
|
|
|
}
|
|
|
|
else if(*j == "WRAP_EXCLUDE")
|
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
propertyPairs.push_back("WRAP_EXCLUDE");
|
|
|
|
propertyPairs.push_back("1");
|
2002-03-29 18:06:30 +03:00
|
|
|
}
|
|
|
|
else if(*j == "GENERATED")
|
|
|
|
{
|
2003-06-03 18:30:23 +04:00
|
|
|
generated = true;
|
2002-08-16 19:20:18 +04:00
|
|
|
propertyPairs.push_back("GENERATED");
|
|
|
|
propertyPairs.push_back("1");
|
2002-03-29 18:06:30 +03:00
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
else if(*j == "COMPILE_FLAGS")
|
2002-03-29 18:06:30 +03:00
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
propertyPairs.push_back("COMPILE_FLAGS");
|
2002-03-29 18:06:30 +03:00
|
|
|
++j;
|
2006-12-11 18:26:10 +03:00
|
|
|
if(j == propend)
|
2002-03-29 18:06:30 +03:00
|
|
|
{
|
2006-12-11 18:26:10 +03:00
|
|
|
errors = "called with incorrect number of arguments "
|
|
|
|
"COMPILE_FLAGS with no flags";
|
2002-08-16 19:20:18 +04:00
|
|
|
return false;
|
2002-03-29 18:06:30 +03:00
|
|
|
}
|
2002-08-16 19:20:18 +04:00
|
|
|
propertyPairs.push_back(*j);
|
|
|
|
}
|
2002-12-14 00:16:48 +03:00
|
|
|
else if(*j == "OBJECT_DEPENDS")
|
|
|
|
{
|
|
|
|
propertyPairs.push_back("OBJECT_DEPENDS");
|
|
|
|
++j;
|
2006-12-11 18:26:10 +03:00
|
|
|
if(j == propend)
|
2002-12-14 00:16:48 +03:00
|
|
|
{
|
2006-12-11 18:26:10 +03:00
|
|
|
errors = "called with incorrect number of arguments "
|
|
|
|
"OBJECT_DEPENDS with no dependencies";
|
2002-12-14 00:16:48 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
propertyPairs.push_back(*j);
|
|
|
|
}
|
2002-08-16 19:20:18 +04:00
|
|
|
else if(*j == "PROPERTIES")
|
|
|
|
{
|
|
|
|
// now loop through the rest of the arguments, new style
|
|
|
|
++j;
|
2006-12-11 18:26:10 +03:00
|
|
|
while (j != propend)
|
2002-08-16 19:20:18 +04:00
|
|
|
{
|
|
|
|
propertyPairs.push_back(*j);
|
2003-06-03 18:30:23 +04:00
|
|
|
if(*j == "GENERATED")
|
|
|
|
{
|
|
|
|
++j;
|
2006-12-11 18:26:10 +03:00
|
|
|
if(j != propend && cmSystemTools::IsOn(j->c_str()))
|
2003-06-03 18:30:23 +04:00
|
|
|
{
|
|
|
|
generated = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++j;
|
|
|
|
}
|
2006-12-11 18:26:10 +03:00
|
|
|
if(j == propend)
|
2002-08-16 19:20:18 +04:00
|
|
|
{
|
2006-12-11 18:26:10 +03:00
|
|
|
errors = "called with incorrect number of arguments.";
|
2002-08-16 19:20:18 +04:00
|
|
|
return false;
|
|
|
|
}
|
2008-02-15 19:22:23 +03:00
|
|
|
propertyPairs.push_back(*j);
|
2002-08-16 19:20:18 +04:00
|
|
|
++j;
|
|
|
|
}
|
2002-08-26 16:53:16 +04:00
|
|
|
// break out of the loop because j is already == end
|
|
|
|
break;
|
2002-08-16 19:20:18 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-12-11 18:26:10 +03:00
|
|
|
errors = "called with illegal arguments, maybe missing a "
|
|
|
|
"PROPERTIES specifier?";
|
2002-08-16 19:20:18 +04:00
|
|
|
return false;
|
2002-03-29 18:06:30 +03:00
|
|
|
}
|
|
|
|
}
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2002-03-29 18:06:30 +03:00
|
|
|
// now loop over all the files
|
2006-12-11 18:26:10 +03:00
|
|
|
for(j= filebeg; j != fileend;++j)
|
2006-03-28 17:54:01 +04:00
|
|
|
{
|
2003-06-03 18:30:23 +04:00
|
|
|
// get the source file
|
|
|
|
cmSourceFile* sf =
|
2006-12-11 18:26:10 +03:00
|
|
|
mf->GetOrCreateSource(j->c_str(), generated);
|
2003-06-14 00:47:41 +04:00
|
|
|
if(sf)
|
2002-03-29 18:06:30 +03:00
|
|
|
{
|
2003-06-14 00:47:41 +04:00
|
|
|
// now loop through all the props and set them
|
2006-12-11 18:26:10 +03:00
|
|
|
unsigned int k;
|
2003-06-14 00:47:41 +04:00
|
|
|
for (k = 0; k < propertyPairs.size(); k = k + 2)
|
|
|
|
{
|
|
|
|
sf->SetProperty(propertyPairs[k].c_str(),propertyPairs[k+1].c_str());
|
|
|
|
}
|
2002-03-29 18:06:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|