2001-01-11 22:55:47 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-01-11 22:55:47 +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.
|
2001-01-11 22:55:47 +03:00
|
|
|
|
2002-01-21 23:30:43 +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.
|
2001-01-11 22:55:47 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
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
|
|
|
|
::InitialPass(std::vector<std::string> const& args)
|
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
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2006-05-11 23:50:11 +04:00
|
|
|
cmSystemTools::Error
|
|
|
|
("Empty Include Directory Passed into INCLUDE_DIRECTORIES command.");
|
2004-10-28 23:40:24 +04:00
|
|
|
}
|
2006-04-04 00:20:20 +04:00
|
|
|
std::string unixPath = *i;
|
2006-08-23 18:21:31 +04:00
|
|
|
if (!cmSystemTools::IsOff(unixPath.c_str()))
|
2006-05-12 18:54:09 +04:00
|
|
|
{
|
2006-08-23 18:21:31 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(unixPath);
|
|
|
|
if(!cmSystemTools::FileIsFullPath(unixPath.c_str()))
|
|
|
|
{
|
|
|
|
std::string tmp = this->Makefile->GetStartDirectory();
|
|
|
|
tmp += "/";
|
|
|
|
tmp += unixPath;
|
|
|
|
unixPath = tmp;
|
|
|
|
}
|
2006-05-12 18:54:09 +04:00
|
|
|
}
|
2006-04-04 00:20:20 +04:00
|
|
|
this->Makefile->AddIncludeDirectory(unixPath.c_str(), before);
|
2006-10-05 16:55:59 +04:00
|
|
|
if(system)
|
|
|
|
{
|
|
|
|
this->Makefile->AddSystemIncludeDirectory(unixPath.c_str());
|
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|