STYLE: Fix line-too-long in cmExportLibraryDependencies.
This commit is contained in:
parent
f05423339a
commit
88eca37d4e
@ -163,7 +163,8 @@ void cmExportLibraryDependenciesCommand::ConstFinalPass() const
|
|||||||
"\"${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}\" GREATER 2.4";
|
"\"${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}\" GREATER 2.4";
|
||||||
fout << "IF(" << vertest << ")\n";
|
fout << "IF(" << vertest << ")\n";
|
||||||
fout << " # Information for CMake 2.6 and above.\n";
|
fout << " # Information for CMake 2.6 and above.\n";
|
||||||
for(std::map<cmStdString, cmStdString>::const_iterator i = libDepsNew.begin();
|
for(std::map<cmStdString, cmStdString>::const_iterator
|
||||||
|
i = libDepsNew.begin();
|
||||||
i != libDepsNew.end(); ++i)
|
i != libDepsNew.end(); ++i)
|
||||||
{
|
{
|
||||||
if(!i->second.empty())
|
if(!i->second.empty())
|
||||||
@ -173,7 +174,8 @@ void cmExportLibraryDependenciesCommand::ConstFinalPass() const
|
|||||||
}
|
}
|
||||||
fout << "ELSE(" << vertest << ")\n";
|
fout << "ELSE(" << vertest << ")\n";
|
||||||
fout << " # Information for CMake 2.4 and lower.\n";
|
fout << " # Information for CMake 2.4 and lower.\n";
|
||||||
for(std::map<cmStdString, cmStdString>::const_iterator i = libDepsOld.begin();
|
for(std::map<cmStdString, cmStdString>::const_iterator
|
||||||
|
i = libDepsOld.begin();
|
||||||
i != libDepsOld.end(); ++i)
|
i != libDepsOld.end(); ++i)
|
||||||
{
|
{
|
||||||
if(!i->second.empty())
|
if(!i->second.empty())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user