[Cmake-commits] [cmake-commits] alex committed cmExtraCodeBlocksGenerator.cxx 1.22 1.23

cmake-commits at cmake.org cmake-commits at cmake.org
Sun Jun 28 04:30:13 EDT 2009


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

Modified Files:
	cmExtraCodeBlocksGenerator.cxx 
Log Message:
ENH: also support nmake and msvc for use with CodeBlocks under Windows,
patch by Daniel Teske

Alex


Index: cmExtraCodeBlocksGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmExtraCodeBlocksGenerator.cxx,v
retrieving revision 1.22
retrieving revision 1.23
diff -C 2 -d -r1.22 -r1.23
*** cmExtraCodeBlocksGenerator.cxx	10 Mar 2009 21:34:18 -0000	1.22
--- cmExtraCodeBlocksGenerator.cxx	28 Jun 2009 08:30:11 -0000	1.23
***************
*** 62,67 ****
  #if defined(_WIN32)
    this->SupportedGlobalGenerators.push_back("MinGW Makefiles");
  // disable until somebody actually tests it:
- //  this->SupportedGlobalGenerators.push_back("NMake Makefiles");
  //  this->SupportedGlobalGenerators.push_back("MSYS Makefiles");
  #endif
--- 62,67 ----
  #if defined(_WIN32)
    this->SupportedGlobalGenerators.push_back("MinGW Makefiles");
+   this->SupportedGlobalGenerators.push_back("NMake Makefiles");
  // disable until somebody actually tests it:
  //  this->SupportedGlobalGenerators.push_back("MSYS Makefiles");
  #endif
***************
*** 429,433 ****
    if (compilerId == "MSVC")
      {
!     compiler = "msvc";
      }
    else if (compilerId == "Borland")
--- 429,433 ----
    if (compilerId == "MSVC")
      {
!     compiler = "msvc8";
      }
    else if (compilerId == "Borland")



More information about the Cmake-commits mailing list