2001-01-11 14:55:47 -05:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 18:03:27 -04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-01-11 14:55:47 -05:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 18: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.
|
2001-01-11 14:55:47 -05:00
|
|
|
|
2002-01-21 15:30:43 -05: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.
|
2001-01-11 14:55:47 -05:00
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-18 11:20:24 -05:00
|
|
|
#include "cmIncludeDirectoryCommand.h"
|
2002-09-27 16:24:10 -04:00
|
|
|
|
2001-01-18 11:20:24 -05:00
|
|
|
// cmIncludeDirectoryCommand
|
2006-05-11 15:50:11 -04:00
|
|
|
bool cmIncludeDirectoryCommand
|
2008-01-23 10:28:26 -05:00
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-01-05 11:41:20 -05:00
|
|
|
{
|
2002-12-11 18:13:33 -05:00
|
|
|
if(args.size() < 1 )
|
2001-01-05 11:41:20 -05:00
|
|
|
{
|
2002-07-22 10:01:53 -04:00
|
|
|
return true;
|
2001-01-05 11:41:20 -05:00
|
|
|
}
|
2001-11-02 22:32:39 -05:00
|
|
|
|
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
|
|
|
|
2006-04-04 09:35:22 -04:00
|
|
|
bool before = this->Makefile->IsOn("CMAKE_INCLUDE_DIRECTORIES_BEFORE");
|
2006-10-05 08:55:59 -04:00
|
|
|
bool system = false;
|
2006-04-04 09:35:22 -04:00
|
|
|
|
2001-11-02 22:32:39 -05:00
|
|
|
if ((*i) == "BEFORE")
|
|
|
|
{
|
|
|
|
before = true;
|
|
|
|
++i;
|
|
|
|
}
|
2006-04-04 09:35:22 -04:00
|
|
|
else if ((*i) == "AFTER")
|
|
|
|
{
|
|
|
|
before = false;
|
|
|
|
++i;
|
|
|
|
}
|
2001-11-02 22:32:39 -05:00
|
|
|
|
|
|
|
for(; i != args.end(); ++i)
|
2001-01-05 11:41:20 -05:00
|
|
|
{
|
2006-10-05 08:55:59 -04:00
|
|
|
if(*i == "SYSTEM")
|
|
|
|
{
|
|
|
|
system = true;
|
|
|
|
continue;
|
|
|
|
}
|
2004-10-28 15:40:24 -04:00
|
|
|
if(i->size() == 0)
|
|
|
|
{
|
2008-03-08 09:50:56 -05:00
|
|
|
this->SetError("given empty-string as include directory.");
|
|
|
|
return false;
|
2004-10-28 15:40:24 -04:00
|
|
|
}
|
2007-03-07 11:03:57 -05: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 "
|
|
|
|
//
|
|
|
|
// ideally that should be three seperate arguments but when sucking the
|
|
|
|
// 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 10:54:09 -04:00
|
|
|
{
|
2007-03-07 11:03:57 -05:00
|
|
|
this->AddDirectory(ret.substr(0,pos).c_str(), before, system);
|
2006-05-12 10:54:09 -04:00
|
|
|
}
|
2007-03-07 11:03:57 -05:00
|
|
|
if (ret.size()-pos-1)
|
2006-10-05 08:55:59 -04:00
|
|
|
{
|
2007-03-08 08:46:03 -05:00
|
|
|
this->AddDirectory(ret.substr(pos+1,ret.size()-pos-1).c_str(),
|
|
|
|
before, system);
|
2006-10-05 08:55:59 -04:00
|
|
|
}
|
2007-03-07 11:03:57 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove any leading or trailing spaces and \r
|
|
|
|
pos = ret.size()-1;
|
|
|
|
while(ret[pos] == ' ' || ret[pos] == '\r')
|
|
|
|
{
|
|
|
|
ret.erase(pos);
|
|
|
|
pos--;
|
|
|
|
}
|
|
|
|
pos = 0;
|
|
|
|
while(ret.size() && ret[pos] == ' ' || ret[pos] == '\r')
|
|
|
|
{
|
|
|
|
ret.erase(pos,1);
|
|
|
|
}
|
|
|
|
if (!ret.size())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 11:41:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|