2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-01-11 22:55: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.
|
2001-01-11 22:55: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.
|
|
|
|
============================================================================*/
|
2001-01-18 19:20:24 +03:00
|
|
|
#include "cmIncludeDirectoryCommand.h"
|
2002-09-28 00:24:10 +04:00
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
// cmIncludeDirectoryCommand
|
2006-05-11 23:50:11 +04:00
|
|
|
bool cmIncludeDirectoryCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if(args.size() < 1 )
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2002-07-22 18:01:53 +04:00
|
|
|
return true;
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
2001-11-03 06:32:39 +03:00
|
|
|
|
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
|
|
|
|
2006-04-04 17:35:22 +04:00
|
|
|
bool before = this->Makefile->IsOn("CMAKE_INCLUDE_DIRECTORIES_BEFORE");
|
2006-10-05 16:55:59 +04:00
|
|
|
bool system = false;
|
2006-04-04 17:35:22 +04:00
|
|
|
|
2001-11-03 06:32:39 +03:00
|
|
|
if ((*i) == "BEFORE")
|
|
|
|
{
|
|
|
|
before = true;
|
|
|
|
++i;
|
|
|
|
}
|
2006-04-04 17:35:22 +04:00
|
|
|
else if ((*i) == "AFTER")
|
|
|
|
{
|
|
|
|
before = false;
|
|
|
|
++i;
|
|
|
|
}
|
2001-11-03 06:32:39 +03:00
|
|
|
|
2013-01-20 15:28:59 +04:00
|
|
|
std::vector<std::string> beforeIncludes;
|
|
|
|
std::vector<std::string> afterIncludes;
|
|
|
|
std::set<cmStdString> systemIncludes;
|
|
|
|
|
2001-11-03 06:32:39 +03:00
|
|
|
for(; i != args.end(); ++i)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2006-10-05 16:55:59 +04:00
|
|
|
if(*i == "SYSTEM")
|
|
|
|
{
|
|
|
|
system = true;
|
|
|
|
continue;
|
|
|
|
}
|
2004-10-28 23:40:24 +04:00
|
|
|
if(i->size() == 0)
|
|
|
|
{
|
2008-03-08 17:50:56 +03:00
|
|
|
this->SetError("given empty-string as include directory.");
|
|
|
|
return false;
|
2004-10-28 23:40:24 +04:00
|
|
|
}
|
2007-03-07 19:03:57 +03:00
|
|
|
|
2013-01-20 15:28:59 +04:00
|
|
|
std::vector<std::string> includes;
|
|
|
|
|
2013-12-26 11:06:36 +04:00
|
|
|
this->GetIncludes(*i, includes);
|
2007-03-07 19:03:57 +03:00
|
|
|
|
2013-01-20 15:28:59 +04:00
|
|
|
if (before)
|
|
|
|
{
|
|
|
|
beforeIncludes.insert(beforeIncludes.end(),
|
|
|
|
includes.begin(),
|
|
|
|
includes.end());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
afterIncludes.insert(afterIncludes.end(),
|
|
|
|
includes.begin(),
|
|
|
|
includes.end());
|
|
|
|
}
|
|
|
|
if (system)
|
|
|
|
{
|
|
|
|
for (std::vector<std::string>::const_iterator li = includes.begin();
|
|
|
|
li != includes.end(); ++li)
|
|
|
|
{
|
|
|
|
systemIncludes.insert(*li);
|
|
|
|
}
|
|
|
|
}
|
2007-03-07 19:03:57 +03:00
|
|
|
}
|
2013-01-20 15:28:59 +04:00
|
|
|
std::reverse(beforeIncludes.begin(), beforeIncludes.end());
|
|
|
|
|
|
|
|
this->Makefile->AddIncludeDirectories(afterIncludes);
|
|
|
|
this->Makefile->AddIncludeDirectories(beforeIncludes, before);
|
|
|
|
this->Makefile->AddSystemIncludeDirectories(systemIncludes);
|
|
|
|
|
2007-03-07 19:03:57 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-18 15:57:07 +04:00
|
|
|
static bool StartsWithGeneratorExpression(const std::string &input)
|
|
|
|
{
|
|
|
|
return input[0] == '$' && input[1] == '<';
|
|
|
|
}
|
|
|
|
|
2007-03-07 19:03:57 +03:00
|
|
|
// do a lot of cleanup on the arguments because this is one place where folks
|
|
|
|
// sometimes take the output of a program and pass it directly into this
|
|
|
|
// command not thinking that a single argument could be filled with spaces
|
|
|
|
// and newlines etc liek below:
|
|
|
|
//
|
|
|
|
// " /foo/bar
|
|
|
|
// /boo/hoo /dingle/berry "
|
|
|
|
//
|
2010-07-02 18:58:00 +04:00
|
|
|
// ideally that should be three separate arguments but when sucking the
|
2007-03-07 19:03:57 +03:00
|
|
|
// output from a program and passing it into a command the cleanup doesn't
|
|
|
|
// always happen
|
|
|
|
//
|
2013-01-20 15:28:59 +04:00
|
|
|
void cmIncludeDirectoryCommand::GetIncludes(const std::string &arg,
|
|
|
|
std::vector<std::string> &incs)
|
2007-03-07 19:03:57 +03:00
|
|
|
{
|
|
|
|
// break apart any line feed arguments
|
|
|
|
std::string::size_type pos = 0;
|
2013-01-20 15:28:59 +04:00
|
|
|
std::string::size_type lastPos = 0;
|
|
|
|
while((pos = arg.find('\n', lastPos)) != std::string::npos)
|
2007-03-07 19:03:57 +03:00
|
|
|
{
|
|
|
|
if (pos)
|
2006-05-12 18:54:09 +04:00
|
|
|
{
|
2013-01-20 15:28:59 +04:00
|
|
|
std::string inc = arg.substr(lastPos,pos);
|
2013-02-06 14:47:14 +04:00
|
|
|
this->NormalizeInclude(inc);
|
2013-05-20 14:25:59 +04:00
|
|
|
if (!inc.empty())
|
|
|
|
{
|
|
|
|
incs.push_back(inc);
|
|
|
|
}
|
2006-10-05 16:55:59 +04:00
|
|
|
}
|
2013-01-20 15:28:59 +04:00
|
|
|
lastPos = pos + 1;
|
2007-03-07 19:03:57 +03:00
|
|
|
}
|
2013-01-20 15:28:59 +04:00
|
|
|
std::string inc = arg.substr(lastPos);
|
2013-02-06 14:47:14 +04:00
|
|
|
this->NormalizeInclude(inc);
|
2013-05-20 14:25:59 +04:00
|
|
|
if (!inc.empty())
|
|
|
|
{
|
|
|
|
incs.push_back(inc);
|
|
|
|
}
|
2013-01-20 15:28:59 +04:00
|
|
|
}
|
2007-03-07 19:03:57 +03:00
|
|
|
|
2013-01-20 15:28:59 +04:00
|
|
|
void cmIncludeDirectoryCommand::NormalizeInclude(std::string &inc)
|
|
|
|
{
|
|
|
|
std::string::size_type b = inc.find_first_not_of(" \r");
|
|
|
|
std::string::size_type e = inc.find_last_not_of(" \r");
|
|
|
|
if ((b!=inc.npos) && (e!=inc.npos))
|
2007-03-07 19:03:57 +03:00
|
|
|
{
|
2013-01-20 15:28:59 +04:00
|
|
|
inc.assign(inc, b, 1+e-b); // copy the remaining substring
|
2007-03-07 19:03:57 +03:00
|
|
|
}
|
2013-05-20 14:25:59 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
inc = "";
|
|
|
|
return;
|
|
|
|
}
|
2009-03-13 02:24:27 +03:00
|
|
|
|
2013-01-20 15:28:59 +04:00
|
|
|
if (!cmSystemTools::IsOff(inc.c_str()))
|
2007-03-07 19:03:57 +03:00
|
|
|
{
|
2013-01-20 15:28:59 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(inc);
|
|
|
|
|
|
|
|
if(!cmSystemTools::FileIsFullPath(inc.c_str()))
|
2007-03-07 19:03:57 +03:00
|
|
|
{
|
2013-01-20 15:28:59 +04:00
|
|
|
if(!StartsWithGeneratorExpression(inc))
|
2012-09-21 01:22:59 +04:00
|
|
|
{
|
|
|
|
std::string tmp = this->Makefile->GetStartDirectory();
|
|
|
|
tmp += "/";
|
2013-01-20 15:28:59 +04:00
|
|
|
tmp += inc;
|
|
|
|
inc = tmp;
|
2012-09-21 01:22:59 +04:00
|
|
|
}
|
2007-03-07 19:03:57 +03:00
|
|
|
}
|
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|