[Cmake-commits] [cmake-commits] david.cole committed cmGlobalXCodeGenerator.cxx 1.242 1.243

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Feb 12 15:01:40 EST 2010


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

Modified Files:
	cmGlobalXCodeGenerator.cxx 
Log Message:
Preemptively fix line too long problem before tomorrow's dashboard has a chance to complain about it.


Index: cmGlobalXCodeGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalXCodeGenerator.cxx,v
retrieving revision 1.242
retrieving revision 1.243
diff -C 2 -d -r1.242 -r1.243
*** cmGlobalXCodeGenerator.cxx	12 Feb 2010 19:09:54 -0000	1.242
--- cmGlobalXCodeGenerator.cxx	12 Feb 2010 20:01:37 -0000	1.243
***************
*** 2759,2764 ****
      }
  
!   // put this last so it can override existing settings
!   // Convert "CMAKE_XCODE_ATTRIBUTE_*" properties directly.
    {
      std::vector<std::string> vars = this->CurrentMakefile->GetDefinitions();
--- 2759,2764 ----
      }
  
!   // Put this last so it can override existing settings
!   // Convert "CMAKE_XCODE_ATTRIBUTE_*" variables directly.
    {
      std::vector<std::string> vars = this->CurrentMakefile->GetDefinitions();
***************
*** 2769,2773 ****
        {
          buildSettings->AddAttribute(i->substr(22).c_str(),
!           this->CreateString(this->CurrentMakefile->GetDefinition(i->c_str())));
        }
      }
--- 2769,2774 ----
        {
          buildSettings->AddAttribute(i->substr(22).c_str(),
!           this->CreateString(
!             this->CurrentMakefile->GetDefinition(i->c_str())));
        }
      }



More information about the Cmake-commits mailing list