[Cmake-commits] [cmake-commits] david.cole committed cmGlobalVisualStudio6Generator.cxx 1.76 1.77 cmLocalVisualStudio6Generator.cxx 1.148 1.149

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Dec 10 10:50:09 EST 2008


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv20556

Modified Files:
	cmGlobalVisualStudio6Generator.cxx 
	cmLocalVisualStudio6Generator.cxx 
Log Message:
STYLE: Fix line length style violations.


Index: cmGlobalVisualStudio6Generator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalVisualStudio6Generator.cxx,v
retrieving revision 1.76
retrieving revision 1.77
diff -C 2 -d -r1.76 -r1.77
*** cmGlobalVisualStudio6Generator.cxx	9 Dec 2008 21:07:10 -0000	1.76
--- cmGlobalVisualStudio6Generator.cxx	10 Dec 2008 15:50:07 -0000	1.77
***************
*** 420,424 ****
            {
            fout << "Begin Project Dependency\n";
!           fout << "Project_Dep_Name " << GetVS6TargetName(j->first.c_str()) << "\n";
            fout << "End Project Dependency\n";
            }
--- 420,425 ----
            {
            fout << "Begin Project Dependency\n";
!           fout << "Project_Dep_Name "
!                << GetVS6TargetName(j->first.c_str()) << "\n";
            fout << "End Project Dependency\n";
            }

Index: cmLocalVisualStudio6Generator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalVisualStudio6Generator.cxx,v
retrieving revision 1.148
retrieving revision 1.149
diff -C 2 -d -r1.148 -r1.149
*** cmLocalVisualStudio6Generator.cxx	9 Dec 2008 21:07:10 -0000	1.148
--- cmLocalVisualStudio6Generator.cxx	10 Dec 2008 15:50:07 -0000	1.149
***************
*** 1061,1066 ****
           && 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)))
        {
        // Compute the proper name to use to link this library.
--- 1061,1068 ----
           && 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)))
        {
        // Compute the proper name to use to link this library.



More information about the Cmake-commits mailing list