2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-01-11 22:55:47 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-01-11 22:55:47 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2001-01-18 19:20:24 +03:00
|
|
|
#include "cmLinkDirectoriesCommand.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-01-18 19:20:24 +03:00
|
|
|
// cmLinkDirectoriesCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmLinkDirectoriesCommand::InitialPass(
|
|
|
|
std::vector<std::string> const& args, cmExecutionStatus&)
|
2001-01-05 19:41:20 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() < 1) {
|
2002-08-01 23:58:25 +04:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = args.begin();
|
|
|
|
i != args.end(); ++i) {
|
2009-11-24 19:16:38 +03:00
|
|
|
this->AddLinkDir(*i);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-24 19:16:38 +03:00
|
|
|
void cmLinkDirectoriesCommand::AddLinkDir(std::string const& dir)
|
|
|
|
{
|
|
|
|
std::string unixPath = dir;
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(unixPath);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::FileIsFullPath(unixPath.c_str())) {
|
2009-11-24 19:16:38 +03:00
|
|
|
bool convertToAbsolute = false;
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream e;
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2009-11-24 19:16:38 +03:00
|
|
|
e << "This command specifies the relative path\n"
|
|
|
|
<< " " << unixPath << "\n"
|
|
|
|
<< "as a link directory.\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-05-16 17:34:04 +03:00
|
|
|
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0015)) {
|
2009-11-24 19:16:38 +03:00
|
|
|
case cmPolicies::WARN:
|
2015-05-03 11:12:10 +03:00
|
|
|
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0015);
|
2009-11-24 19:16:38 +03:00
|
|
|
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
|
|
|
case cmPolicies::OLD:
|
|
|
|
// OLD behavior does not convert
|
|
|
|
break;
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
2015-05-03 11:12:10 +03:00
|
|
|
e << cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0015);
|
2009-11-24 19:16:38 +03:00
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
case cmPolicies::NEW:
|
|
|
|
// NEW behavior converts
|
|
|
|
convertToAbsolute = true;
|
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (convertToAbsolute) {
|
2015-04-16 21:06:54 +03:00
|
|
|
std::string tmp = this->Makefile->GetCurrentSourceDirectory();
|
2009-11-24 19:16:38 +03:00
|
|
|
tmp += "/";
|
|
|
|
tmp += unixPath;
|
|
|
|
unixPath = tmp;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-07-18 14:52:46 +03:00
|
|
|
this->Makefile->AppendProperty("LINK_DIRECTORIES", unixPath.c_str());
|
2009-11-24 19:16:38 +03:00
|
|
|
}
|