2002-03-29 18:06:30 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-03-29 18:06:30 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-03-29 18:06:30 +03:00
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmSetSourceFilesPropertiesCommand.h"
|
|
|
|
|
2004-02-22 21:14:59 +03:00
|
|
|
#include "cmSourceFile.h"
|
|
|
|
|
2002-03-29 18:06:30 +03:00
|
|
|
// cmSetSourceFilesPropertiesCommand
|
2002-08-16 19:20:18 +04:00
|
|
|
bool cmSetSourceFilesPropertiesCommand::InitialPass(
|
2002-12-12 02:13:33 +03:00
|
|
|
std::vector<std::string> const& args)
|
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
|
|
|
|
2002-08-16 19:20:18 +04:00
|
|
|
// first collect up the list of files
|
|
|
|
std::vector<std::string> propertyPairs;
|
|
|
|
bool doingFiles = true;
|
2003-06-03 18:30:23 +04:00
|
|
|
bool generated = false;
|
2002-08-16 19:20:18 +04:00
|
|
|
int numFiles = 0;
|
2002-03-29 18:06:30 +03:00
|
|
|
std::vector<std::string>::const_iterator j;
|
|
|
|
for(j= args.begin(); j != args.end();++j)
|
|
|
|
{
|
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
|
|
|
doingFiles = false;
|
|
|
|
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
|
|
|
doingFiles = false;
|
|
|
|
propertyPairs.push_back("WRAP_EXCLUDE");
|
|
|
|
propertyPairs.push_back("1");
|
2002-03-29 18:06:30 +03:00
|
|
|
}
|
|
|
|
else if(*j == "GENERATED")
|
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
doingFiles = false;
|
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
|
|
|
doingFiles = false;
|
|
|
|
propertyPairs.push_back("COMPILE_FLAGS");
|
2002-03-29 18:06:30 +03:00
|
|
|
++j;
|
|
|
|
if(j == args.end())
|
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
this->SetError("called with incorrect number of arguments COMPILE_FLAGS with no flags");
|
|
|
|
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")
|
|
|
|
{
|
|
|
|
doingFiles = false;
|
|
|
|
propertyPairs.push_back("OBJECT_DEPENDS");
|
|
|
|
++j;
|
|
|
|
if(j == args.end())
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments "
|
|
|
|
"OBJECT_DEPENDS with no dependencies");
|
|
|
|
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;
|
|
|
|
while (j != args.end())
|
|
|
|
{
|
|
|
|
propertyPairs.push_back(*j);
|
2003-06-03 18:30:23 +04:00
|
|
|
if(*j == "GENERATED")
|
|
|
|
{
|
|
|
|
++j;
|
|
|
|
if(j != args.end() && cmSystemTools::IsOn(j->c_str()))
|
|
|
|
{
|
|
|
|
generated = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++j;
|
|
|
|
}
|
2002-08-16 19:20:18 +04:00
|
|
|
if(j == args.end())
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
propertyPairs.push_back(*j);
|
|
|
|
++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 if (doingFiles)
|
|
|
|
{
|
|
|
|
numFiles++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetError("called with illegal arguments, maybe missing a PROPERTIES specifier?");
|
|
|
|
return false;
|
2002-03-29 18:06:30 +03:00
|
|
|
}
|
|
|
|
}
|
2002-08-16 19:20:18 +04:00
|
|
|
|
2002-03-29 18:06:30 +03:00
|
|
|
// now loop over all the files
|
2002-08-22 17:11:18 +04:00
|
|
|
int i;
|
|
|
|
unsigned int k;
|
2002-08-16 19:20:18 +04:00
|
|
|
for(i = 0; i < numFiles; ++i)
|
2002-03-29 18:06:30 +03:00
|
|
|
{
|
2003-06-03 18:30:23 +04:00
|
|
|
// get the source file
|
|
|
|
cmSourceFile* sf =
|
|
|
|
m_Makefile->GetOrCreateSource(args[i].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
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|