The clang-format tool can do a good job formatting most code, but well-organized streaming blocks are best left manually formatted. Find blocks of the form os << "...\n" "...\n" ; using the command $ git ls-files -z -- Source | egrep -v -z '^Source/kwsys/' | xargs -0 pcregrep -M --color=always -B 1 -A 1 -n \ '<<[^\n]*\n(^ *("[^\n]*("|<<|;)$|;)\n){2,}' Find blocks of the form os << "...\n" << "...\n" << "...\n"; using the command $ git ls-files -z -- Source | egrep -v -z '^Source/kwsys/' | xargs -0 pcregrep -M --color=always -B 1 -A 1 -n \ '<<[^\n]*\n(^ *<<[^\n]*(\\n"|<<|;)$\n){2,}' Surround such blocks with the pair /* clang-format off */ ... /* clang-format on */ in order to protect them from update by clang-format. Use the C-style `/*...*/` comments instead of C++-style `//...` comments in order to prevent them from ever being swallowed by re-formatting of surrounding comments.
72 lines
2.3 KiB
C++
72 lines
2.3 KiB
C++
/*============================================================================
|
|
CMake - Cross Platform Makefile Generator
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
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 "cmLinkDirectoriesCommand.h"
|
|
|
|
// cmLinkDirectoriesCommand
|
|
bool cmLinkDirectoriesCommand
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
|
{
|
|
if(args.size() < 1 )
|
|
{
|
|
return true;
|
|
}
|
|
|
|
for(std::vector<std::string>::const_iterator i = args.begin();
|
|
i != args.end(); ++i)
|
|
{
|
|
this->AddLinkDir(*i);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
void cmLinkDirectoriesCommand::AddLinkDir(std::string const& dir)
|
|
{
|
|
std::string unixPath = dir;
|
|
cmSystemTools::ConvertToUnixSlashes(unixPath);
|
|
if(!cmSystemTools::FileIsFullPath(unixPath.c_str()))
|
|
{
|
|
bool convertToAbsolute = false;
|
|
std::ostringstream e;
|
|
/* clang-format off */
|
|
e << "This command specifies the relative path\n"
|
|
<< " " << unixPath << "\n"
|
|
<< "as a link directory.\n";
|
|
/* clang-format on */
|
|
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0015))
|
|
{
|
|
case cmPolicies::WARN:
|
|
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0015);
|
|
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:
|
|
e << cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0015);
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
case cmPolicies::NEW:
|
|
// NEW behavior converts
|
|
convertToAbsolute = true;
|
|
break;
|
|
}
|
|
if (convertToAbsolute)
|
|
{
|
|
std::string tmp = this->Makefile->GetCurrentSourceDirectory();
|
|
tmp += "/";
|
|
tmp += unixPath;
|
|
unixPath = tmp;
|
|
}
|
|
}
|
|
this->Makefile->AppendProperty("LINK_DIRECTORIES", unixPath.c_str());
|
|
}
|