[Cmake-commits] [cmake-commits] hoffman committed cmLocalVisualStudio6Generator.cxx 1.146 1.147

cmake-commits at cmake.org cmake-commits at cmake.org
Sun Dec 7 19:36:06 EST 2008


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

Modified Files:
	cmLocalVisualStudio6Generator.cxx 
Log Message:
STYLE: fix link length issues


Index: cmLocalVisualStudio6Generator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalVisualStudio6Generator.cxx,v
retrieving revision 1.146
retrieving revision 1.147
diff -C 2 -d -r1.146 -r1.147
*** cmLocalVisualStudio6Generator.cxx	4 Dec 2008 13:57:27 -0000	1.146
--- cmLocalVisualStudio6Generator.cxx	8 Dec 2008 00:36:03 -0000	1.147
***************
*** 1518,1532 ****
      std::string debugrelDefines = " ";
  
!     this->AppendDefines(defines,this->Makefile->GetProperty("COMPILE_DEFINITIONS"), 0);
!     this->AppendDefines(debugDefines,this->Makefile->GetProperty("COMPILE_DEFINITIONS_DEBUG"), 0);
!     this->AppendDefines(releaseDefines,this->Makefile->GetProperty("COMPILE_DEFINITIONS_RELEASE"), 0);
!     this->AppendDefines(minsizeDefines,this->Makefile->GetProperty("COMPILE_DEFINITIONS_MINSIZEREL"), 0);
!     this->AppendDefines(debugrelDefines,this->Makefile->GetProperty("COMPILE_DEFINITIONS_RELWITHDEBINFO"), 0);
  
!     this->AppendDefines(defines,target.GetProperty("COMPILE_DEFINITIONS"), 0);
!     this->AppendDefines(debugDefines,target.GetProperty("COMPILE_DEFINITIONS_DEBUG"), 0);
!     this->AppendDefines(releaseDefines,target.GetProperty("COMPILE_DEFINITIONS_RELEASE"), 0);
!     this->AppendDefines(minsizeDefines,target.GetProperty("COMPILE_DEFINITIONS_MINSIZEREL"), 0);
!     this->AppendDefines(debugrelDefines,target.GetProperty("COMPILE_DEFINITIONS_RELWITHDEBINFO"), 0);
      flags += defines;
      flagsDebug += debugDefines;
--- 1518,1552 ----
      std::string debugrelDefines = " ";
  
!     this->AppendDefines(
!       defines,
!       this->Makefile->GetProperty("COMPILE_DEFINITIONS"), 0);
!     this->AppendDefines(
!       debugDefines,
!       this->Makefile->GetProperty("COMPILE_DEFINITIONS_DEBUG"),0);
!     this->AppendDefines(
!       releaseDefines,
!       this->Makefile->GetProperty("COMPILE_DEFINITIONS_RELEASE"), 0);
!     this->AppendDefines(
!       minsizeDefines,
!       this->Makefile->GetProperty("COMPILE_DEFINITIONS_MINSIZEREL"), 0);
!     this->AppendDefines(
!       debugrelDefines,
!       this->Makefile->GetProperty("COMPILE_DEFINITIONS_RELWITHDEBINFO"), 0);
  
!     this->AppendDefines(
!       defines,
!       target.GetProperty("COMPILE_DEFINITIONS"), 0);
!     this->AppendDefines(
!       debugDefines,
!       target.GetProperty("COMPILE_DEFINITIONS_DEBUG"), 0);
!     this->AppendDefines(
!       releaseDefines,
!       target.GetProperty("COMPILE_DEFINITIONS_RELEASE"), 0);
!     this->AppendDefines(
!       minsizeDefines,
!       target.GetProperty("COMPILE_DEFINITIONS_MINSIZEREL"), 0);
!     this->AppendDefines(
!       debugrelDefines,
!       target.GetProperty("COMPILE_DEFINITIONS_RELWITHDEBINFO"), 0);
      flags += defines;
      flagsDebug += debugDefines;



More information about the Cmake-commits mailing list