2001-01-11 19:55:47 +00:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-01-11 19:55:47 +00:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 22:03:27 +00: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 19:55:47 +00:00
|
|
|
|
2002-01-21 20:30:43 +00: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 19:55:47 +00:00
|
|
|
|
|
|
|
=========================================================================*/
|
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
|
2002-12-11 23:13:33 +00:00
|
|
|
bool cmIncludeDirectoryCommand::InitialPass(std::vector<std::string> const& args)
|
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();
|
|
|
|
|
|
|
|
bool before = false;
|
|
|
|
if ((*i) == "BEFORE")
|
|
|
|
{
|
|
|
|
before = true;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(; i != args.end(); ++i)
|
2001-01-05 16:41:20 +00:00
|
|
|
{
|
2004-10-28 19:40:24 +00:00
|
|
|
if(i->size() == 0)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Empty Include Directory Passed into INCLUDE_DIRECTORIES command.");
|
|
|
|
}
|
2001-11-03 03:32:39 +00:00
|
|
|
m_Makefile->AddIncludeDirectory((*i).c_str(), before);
|
2001-01-05 16:41:20 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|