[Cmake-commits] [cmake-commits] king committed cmLocalGenerator.h 1.120 1.121 cmMakefileExecutableTargetGenerator.cxx 1.67 1.68 cmMakefileLibraryTargetGenerator.cxx 1.83 1.84 cmMakefileTargetGenerator.cxx 1.130 1.131

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Oct 23 08:02:29 EDT 2009


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

Modified Files:
	cmLocalGenerator.h cmMakefileExecutableTargetGenerator.cxx 
	cmMakefileLibraryTargetGenerator.cxx 
	cmMakefileTargetGenerator.cxx 
Log Message:
Fix line-too-long style violations

The commit "Define per-target OSX_ARCHITECTURES property" introduced
some long lines.  This wraps them into multiple shorter lines.


Index: cmMakefileLibraryTargetGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefileLibraryTargetGenerator.cxx,v
retrieving revision 1.83
retrieving revision 1.84
diff -C 2 -d -r1.83 -r1.84
*** cmMakefileLibraryTargetGenerator.cxx	21 Oct 2009 17:00:47 -0000	1.83
--- cmMakefileLibraryTargetGenerator.cxx	23 Oct 2009 12:02:24 -0000	1.84
***************
*** 684,688 ****
  
  #ifdef __APPLE__
!   this->LocalGenerator->AddArchitectureFlags(langFlags, this->Target, linkLanguage, this->ConfigName);
  #endif /* __APPLE__ */
  
--- 684,689 ----
  
  #ifdef __APPLE__
!   this->LocalGenerator->AddArchitectureFlags(langFlags, this->Target,
!                                              linkLanguage, this->ConfigName);
  #endif /* __APPLE__ */
  

Index: cmLocalGenerator.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalGenerator.h,v
retrieving revision 1.120
retrieving revision 1.121
diff -C 2 -d -r1.120 -r1.121
*** cmLocalGenerator.h	21 Oct 2009 17:00:47 -0000	1.120
--- cmLocalGenerator.h	23 Oct 2009 12:02:20 -0000	1.121
***************
*** 135,139 ****
  
  #ifdef __APPLE__
!   void AddArchitectureFlags(std::string& flags, cmTarget* target, const char *lang, const char* config);
  #endif /* __APPLE__ */
  
--- 135,140 ----
  
  #ifdef __APPLE__
!   void AddArchitectureFlags(std::string& flags, cmTarget* target,
!                             const char *lang, const char* config);
  #endif /* __APPLE__ */
  

Index: cmMakefileExecutableTargetGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefileExecutableTargetGenerator.cxx,v
retrieving revision 1.67
retrieving revision 1.68
diff -C 2 -d -r1.67 -r1.68
*** cmMakefileExecutableTargetGenerator.cxx	21 Oct 2009 17:00:47 -0000	1.67
--- cmMakefileExecutableTargetGenerator.cxx	23 Oct 2009 12:02:21 -0000	1.68
***************
*** 231,235 ****
  
  #ifdef __APPLE__
!   this->LocalGenerator->AddArchitectureFlags(flags, this->Target, linkLanguage, this->ConfigName);
  #endif /* __APPLE__ */
  
--- 231,236 ----
  
  #ifdef __APPLE__
!   this->LocalGenerator->AddArchitectureFlags(flags, this->Target,
!                                              linkLanguage, this->ConfigName);
  #endif /* __APPLE__ */
  

Index: cmMakefileTargetGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefileTargetGenerator.cxx,v
retrieving revision 1.130
retrieving revision 1.131
diff -C 2 -d -r1.130 -r1.131
*** cmMakefileTargetGenerator.cxx	21 Oct 2009 17:00:48 -0000	1.130
--- cmMakefileTargetGenerator.cxx	23 Oct 2009 12:02:24 -0000	1.131
***************
*** 296,300 ****
  
  #ifdef __APPLE__
!     this->LocalGenerator->AddArchitectureFlags(flags, this->Target, lang, this->ConfigName);
  #endif /* __APPLE__ */
  
--- 296,301 ----
  
  #ifdef __APPLE__
!     this->LocalGenerator->AddArchitectureFlags(flags, this->Target,
!                                                lang, this->ConfigName);
  #endif /* __APPLE__ */
  



More information about the Cmake-commits mailing list