2013-01-02 02:20:04 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2013 Stephen Kelly <steveire@gmail.com>
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
#include "cmTargetIncludeDirectoriesCommand.h"
|
|
|
|
|
2014-02-17 14:08:58 +04:00
|
|
|
#include "cmGeneratorExpression.h"
|
|
|
|
|
2013-01-02 02:20:04 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTargetIncludeDirectoriesCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
|
|
|
{
|
2013-01-20 17:04:13 +04:00
|
|
|
return this->HandleArguments(args, "INCLUDE_DIRECTORIES",
|
|
|
|
ArgumentFlags(PROCESS_BEFORE | PROCESS_SYSTEM));
|
2013-01-02 02:20:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTargetIncludeDirectoriesCommand
|
2013-01-21 15:28:27 +04:00
|
|
|
::HandleImportedTarget(const std::string &tgt)
|
2013-01-02 02:20:04 +04:00
|
|
|
{
|
|
|
|
cmOStringStream e;
|
2013-01-21 15:28:27 +04:00
|
|
|
e << "Cannot specify include directories for imported target \""
|
|
|
|
<< tgt << "\".";
|
2013-01-02 02:20:04 +04:00
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTargetIncludeDirectoriesCommand
|
|
|
|
::HandleMissingTarget(const std::string &name)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "Cannot specify include directories for target \"" << name << "\" "
|
|
|
|
"which is not built by this project.";
|
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
}
|
|
|
|
|
2013-01-29 20:23:31 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTargetIncludeDirectoriesCommand
|
|
|
|
::Join(const std::vector<std::string> &content)
|
|
|
|
{
|
|
|
|
std::string dirs;
|
|
|
|
std::string sep;
|
|
|
|
std::string prefix = this->Makefile->GetStartDirectory() + std::string("/");
|
|
|
|
for(std::vector<std::string>::const_iterator it = content.begin();
|
|
|
|
it != content.end(); ++it)
|
|
|
|
{
|
|
|
|
if (cmSystemTools::FileIsFullPath(it->c_str())
|
2013-11-26 05:38:55 +04:00
|
|
|
|| cmGeneratorExpression::Find(*it) == 0)
|
2013-01-29 20:23:31 +04:00
|
|
|
{
|
|
|
|
dirs += sep + *it;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dirs += sep + prefix + *it;
|
|
|
|
}
|
|
|
|
sep = ";";
|
|
|
|
}
|
|
|
|
return dirs;
|
|
|
|
}
|
|
|
|
|
2013-01-02 02:20:04 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2013-11-09 03:18:35 +04:00
|
|
|
bool cmTargetIncludeDirectoriesCommand
|
2013-01-29 20:23:31 +04:00
|
|
|
::HandleDirectContent(cmTarget *tgt, const std::vector<std::string> &content,
|
2013-01-20 17:04:13 +04:00
|
|
|
bool prepend, bool system)
|
2013-01-02 02:20:04 +04:00
|
|
|
{
|
|
|
|
cmListFileBacktrace lfbt;
|
|
|
|
this->Makefile->GetBacktrace(lfbt);
|
2013-02-12 13:35:28 +04:00
|
|
|
cmValueWithOrigin entry(this->Join(content), lfbt);
|
2013-01-02 02:20:04 +04:00
|
|
|
tgt->InsertInclude(entry, prepend);
|
2013-01-20 17:04:13 +04:00
|
|
|
if (system)
|
|
|
|
{
|
|
|
|
tgt->AddSystemIncludeDirectories(content);
|
|
|
|
}
|
2013-11-09 03:18:35 +04:00
|
|
|
return true;
|
2013-01-20 17:04:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTargetIncludeDirectoriesCommand
|
|
|
|
::HandleInterfaceContent(cmTarget *tgt,
|
|
|
|
const std::vector<std::string> &content,
|
|
|
|
bool prepend, bool system)
|
|
|
|
{
|
2013-07-02 16:30:10 +04:00
|
|
|
cmTargetPropCommandBase::HandleInterfaceContent(tgt, content,
|
|
|
|
prepend, system);
|
|
|
|
|
2013-01-20 17:04:13 +04:00
|
|
|
if (system)
|
|
|
|
{
|
2013-07-02 16:30:10 +04:00
|
|
|
std::string joined;
|
|
|
|
std::string sep;
|
|
|
|
for(std::vector<std::string>::const_iterator it = content.begin();
|
|
|
|
it != content.end(); ++it)
|
|
|
|
{
|
|
|
|
joined += sep;
|
|
|
|
sep = ";";
|
|
|
|
joined += *it;
|
|
|
|
}
|
|
|
|
tgt->AppendProperty("INTERFACE_SYSTEM_INCLUDE_DIRECTORIES",
|
|
|
|
joined.c_str());
|
2013-01-20 17:04:13 +04:00
|
|
|
}
|
2013-01-02 02:20:04 +04:00
|
|
|
}
|