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
|
|
|
|
::InitialPass(std::vector<std::string> const& args)
|
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");
|
|
|
|
|
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
|
|
|
{
|
2004-10-28 15:40:24 -04:00
|
|
|
if(i->size() == 0)
|
|
|
|
{
|
2006-05-11 15:50:11 -04:00
|
|
|
cmSystemTools::Error
|
|
|
|
("Empty Include Directory Passed into INCLUDE_DIRECTORIES command.");
|
2004-10-28 15:40:24 -04:00
|
|
|
}
|
2006-04-03 16:20:20 -04:00
|
|
|
std::string unixPath = *i;
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(unixPath);
|
2006-05-12 10:54:09 -04:00
|
|
|
if(!cmSystemTools::FileIsFullPath(unixPath.c_str()))
|
|
|
|
{
|
|
|
|
std::string tmp = this->Makefile->GetStartDirectory();
|
|
|
|
tmp += "/";
|
|
|
|
tmp += unixPath;
|
|
|
|
unixPath = tmp;
|
|
|
|
}
|
2006-07-26 11:46:22 -04:00
|
|
|
/*
|
|
|
|
if ( !cmSystemTools::FileExists(unixPath.c_str()) )
|
|
|
|
{
|
|
|
|
std::string out = "Cannot find directory: " + unixPath;
|
|
|
|
this->SetError(out.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
*/
|
2006-04-03 16:20:20 -04:00
|
|
|
this->Makefile->AddIncludeDirectory(unixPath.c_str(), before);
|
2001-01-05 11:41:20 -05:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|