2009-09-28 15:43:28 +00:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-01-11 19:55:47 +00:00
|
|
|
|
2009-09-28 15:43:28 +00:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-01-11 19:55:47 +00:00
|
|
|
|
2009-09-28 15:43:28 +00: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 16:20:24 +00:00
|
|
|
#include "cmIncludeDirectoryCommand.h"
|
2002-09-27 20:24:10 +00:00
|
|
|
|
2001-01-18 16:20:24 +00:00
|
|
|
// cmIncludeDirectoryCommand
|
2006-05-11 19:50:11 +00:00
|
|
|
bool cmIncludeDirectoryCommand
|
2008-01-23 15:28:26 +00:00
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-01-05 16:41:20 +00:00
|
|
|
{
|
2002-12-11 23:13:33 +00:00
|
|
|
if(args.size() < 1 )
|
2001-01-05 16:41:20 +00:00
|
|
|
{
|
2002-07-22 14:01:53 +00:00
|
|
|
return true;
|
2001-01-05 16:41:20 +00:00
|
|
|
}
|
2001-11-03 03:32:39 +00:00
|
|
|
|
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
|
|
|
|
2006-04-04 13:35:22 +00:00
|
|
|
bool before = this->Makefile->IsOn("CMAKE_INCLUDE_DIRECTORIES_BEFORE");
|
2006-10-05 12:55:59 +00:00
|
|
|
bool system = false;
|
2006-04-04 13:35:22 +00:00
|
|
|
|
2001-11-03 03:32:39 +00:00
|
|
|
if ((*i) == "BEFORE")
|
|
|
|
{
|
|
|
|
before = true;
|
|
|
|
++i;
|
|
|
|
}
|
2006-04-04 13:35:22 +00:00
|
|
|
else if ((*i) == "AFTER")
|
|
|
|
{
|
|
|
|
before = false;
|
|
|
|
++i;
|
|
|
|
}
|
2001-11-03 03:32:39 +00:00
|
|
|
|
|
|
|
for(; i != args.end(); ++i)
|
2001-01-05 16:41:20 +00:00
|
|
|
{
|
2006-10-05 12:55:59 +00:00
|
|
|
if(*i == "SYSTEM")
|
|
|
|
{
|
|
|
|
system = true;
|
|
|
|
continue;
|
|
|
|
}
|
2004-10-28 19:40:24 +00:00
|
|
|
if(i->size() == 0)
|
|
|
|
{
|
2008-03-08 14:50:56 +00:00
|
|
|
this->SetError("given empty-string as include directory.");
|
|
|
|
return false;
|
2004-10-28 19:40:24 +00:00
|
|
|
}
|
2007-03-07 16:03:57 +00:00
|
|
|
|
|
|
|
this->AddDirectory(i->c_str(),before,system);
|
|
|
|
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 14:58:00 +00:00
|
|
|
// ideally that should be three separate arguments but when sucking the
|
2007-03-07 16:03:57 +00:00
|
|
|
// output from a program and passing it into a command the cleanup doesn't
|
|
|
|
// always happen
|
|
|
|
//
|
|
|
|
void cmIncludeDirectoryCommand::AddDirectory(const char *i,
|
|
|
|
bool before,
|
|
|
|
bool system)
|
|
|
|
{
|
|
|
|
// break apart any line feed arguments
|
|
|
|
std::string ret = i;
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
if((pos = ret.find('\n', pos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
if (pos)
|
2006-05-12 14:54:09 +00:00
|
|
|
{
|
2007-03-07 16:03:57 +00:00
|
|
|
this->AddDirectory(ret.substr(0,pos).c_str(), before, system);
|
2006-05-12 14:54:09 +00:00
|
|
|
}
|
2007-03-07 16:03:57 +00:00
|
|
|
if (ret.size()-pos-1)
|
2006-10-05 12:55:59 +00:00
|
|
|
{
|
2007-03-08 13:46:03 +00:00
|
|
|
this->AddDirectory(ret.substr(pos+1,ret.size()-pos-1).c_str(),
|
|
|
|
before, system);
|
2006-10-05 12:55:59 +00:00
|
|
|
}
|
2007-03-07 16:03:57 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove any leading or trailing spaces and \r
|
2009-03-12 23:24:27 +00:00
|
|
|
std::string::size_type b = ret.find_first_not_of(" \r");
|
|
|
|
std::string::size_type e = ret.find_last_not_of(" \r");
|
|
|
|
if ((b!=ret.npos) && (e!=ret.npos))
|
2007-03-07 16:03:57 +00:00
|
|
|
{
|
2009-03-12 23:24:27 +00:00
|
|
|
ret.assign(ret, b, 1+e-b); // copy the remaining substring
|
2007-03-07 16:03:57 +00:00
|
|
|
}
|
2009-03-12 23:24:27 +00:00
|
|
|
else
|
2007-03-07 16:03:57 +00:00
|
|
|
{
|
2009-03-12 23:24:27 +00:00
|
|
|
return; // if we get here, we had only whitespace in the string
|
2007-03-07 16:03:57 +00:00
|
|
|
}
|
2009-03-12 23:24:27 +00:00
|
|
|
|
2007-03-07 16:03:57 +00:00
|
|
|
if (!cmSystemTools::IsOff(ret.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(ret);
|
|
|
|
if(!cmSystemTools::FileIsFullPath(ret.c_str()))
|
|
|
|
{
|
|
|
|
std::string tmp = this->Makefile->GetStartDirectory();
|
|
|
|
tmp += "/";
|
|
|
|
tmp += ret;
|
|
|
|
ret = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this->Makefile->AddIncludeDirectory(ret.c_str(), before);
|
|
|
|
if(system)
|
|
|
|
{
|
|
|
|
this->Makefile->AddSystemIncludeDirectory(ret.c_str());
|
2001-01-05 16:41:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|