mirror of
https://github.com/reactos/CMake.git
synced 2025-02-17 18:17:57 +00:00
STYLE: Fix line length style violations.
This commit is contained in:
parent
73f5e13cf3
commit
227c86d8cc
@ -419,7 +419,8 @@ void cmGlobalVisualStudio6Generator::WriteProject(std::ostream& fout,
|
||||
if(this->FindTarget(0, j->first.c_str()))
|
||||
{
|
||||
fout << "Begin Project Dependency\n";
|
||||
fout << "Project_Dep_Name " << GetVS6TargetName(j->first.c_str()) << "\n";
|
||||
fout << "Project_Dep_Name "
|
||||
<< GetVS6TargetName(j->first.c_str()) << "\n";
|
||||
fout << "End Project Dependency\n";
|
||||
}
|
||||
}
|
||||
|
@ -1060,8 +1060,10 @@ void cmLocalVisualStudio6Generator
|
||||
if ((target.GetType() != cmTarget::SHARED_LIBRARY
|
||||
&& target.GetType() != cmTarget::STATIC_LIBRARY
|
||||
&& target.GetType() != cmTarget::MODULE_LIBRARY) ||
|
||||
(target.GetType()==cmTarget::SHARED_LIBRARY && libName != GetVS6TargetName(j->first)) ||
|
||||
(target.GetType()==cmTarget::MODULE_LIBRARY && libName != GetVS6TargetName(j->first)))
|
||||
(target.GetType()==cmTarget::SHARED_LIBRARY
|
||||
&& libName != GetVS6TargetName(j->first)) ||
|
||||
(target.GetType()==cmTarget::MODULE_LIBRARY
|
||||
&& libName != GetVS6TargetName(j->first)))
|
||||
{
|
||||
// Compute the proper name to use to link this library.
|
||||
std::string lib;
|
||||
|
Loading…
x
Reference in New Issue
Block a user