[Cmake-commits] CMake branch, master, updated. v2.8.10.1-192-gd82200d

Brad King brad.king at kitware.com
Tue Nov 20 11:48:07 EST 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, master has been updated
       via  d82200df2652c913244ba09c15e9059ef1048aa2 (commit)
       via  75ebebc39c93aab4d3a0c03560d2c9db82b574f4 (commit)
       via  8b62080c9db6a15649bd1673179076c096e26bec (commit)
       via  5bdf01184baa0301bd71f486b87d225f07cd80d0 (commit)
       via  8d42ab426092f24f07b43ab2717f6071a7dc01e5 (commit)
       via  6f439b30cb0b1a76c8e7ee8f169a0415a8a47c70 (commit)
       via  5170a8800ff4613dd41f6995e8efd43df36a40bd (commit)
       via  04ff866ca8a0c5f4f8712d6cfafcd192ed4cbe58 (commit)
       via  984ebc3350f72cb005999f7b796803f83be15304 (commit)
       via  30a695021ccc6583493b3e7f9992ad428cd2855f (commit)
       via  e8f841473bcefc618ddf6712567e624156e88399 (commit)
      from  9e73b3a09536aa818793810cb083313b5750db78 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d82200df2652c913244ba09c15e9059ef1048aa2
commit d82200df2652c913244ba09c15e9059ef1048aa2
Merge: 9e73b3a 75ebebc
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Nov 20 11:48:05 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Nov 20 11:48:05 2012 -0500

    Merge topic 'generator-factory'
    
    75ebebc VS: Remove platform specific generator files
    8b62080 VS: Remove EnableLanguage from platform-specific generators
    5bdf011 VS: Remove GetPlatformName from platform-specific generators
    8d42ab4 VS: Fix ArchitectureId of Visual Studio 10 IA64 generator
    6f439b3 VS: Remove AddPlatformDefinitions from platform-specific generators
    5170a88 Make cmGlobalGenerator::GetDocumentation() a static function
    04ff866 Allow a GeneratorFactory handling of more than one generator
    984ebc3 Search generator in cmake::ExtraGenerators before in cmake::Generators
    30a6950 Add cmGlobalGeneratorFactory::GetGenerators()
    e8f8414 Introduce the abstract class cmGlobalGeneratorFactory


-----------------------------------------------------------------------

Summary of changes:
 Source/CMakeLists.txt                           |   15 +--
 Source/cmGlobalBorlandMakefileGenerator.cxx     |    4 +-
 Source/cmGlobalBorlandMakefileGenerator.h       |    7 +-
 Source/cmGlobalGenerator.cxx                    |    8 --
 Source/cmGlobalGenerator.h                      |    3 -
 Source/cmGlobalGeneratorFactory.h               |   59 +++++++++
 Source/cmGlobalJOMMakefileGenerator.cxx         |    4 +-
 Source/cmGlobalJOMMakefileGenerator.h           |    7 +-
 Source/cmGlobalMSYSMakefileGenerator.cxx        |    4 +-
 Source/cmGlobalMSYSMakefileGenerator.h          |    7 +-
 Source/cmGlobalMinGWMakefileGenerator.cxx       |    4 +-
 Source/cmGlobalMinGWMakefileGenerator.h         |    7 +-
 Source/cmGlobalNMakeMakefileGenerator.cxx       |    4 +-
 Source/cmGlobalNMakeMakefileGenerator.h         |    7 +-
 Source/cmGlobalNinjaGenerator.cxx               |    4 +-
 Source/cmGlobalNinjaGenerator.h                 |    7 +-
 Source/cmGlobalUnixMakefileGenerator3.cxx       |    4 +-
 Source/cmGlobalUnixMakefileGenerator3.h         |    8 +-
 Source/cmGlobalVisualStudio10Generator.cxx      |   72 ++++++++++--
 Source/cmGlobalVisualStudio10Generator.h        |   14 +--
 Source/cmGlobalVisualStudio10IA64Generator.cxx  |   50 --------
 Source/cmGlobalVisualStudio10IA64Generator.h    |   40 ------
 Source/cmGlobalVisualStudio10Win64Generator.cxx |   50 --------
 Source/cmGlobalVisualStudio10Win64Generator.h   |   40 ------
 Source/cmGlobalVisualStudio11ARMGenerator.cxx   |   29 -----
 Source/cmGlobalVisualStudio11ARMGenerator.h     |   35 ------
 Source/cmGlobalVisualStudio11Generator.cxx      |   64 ++++++++--
 Source/cmGlobalVisualStudio11Generator.h        |   16 +--
 Source/cmGlobalVisualStudio11Win64Generator.cxx |   37 ------
 Source/cmGlobalVisualStudio11Win64Generator.h   |   37 ------
 Source/cmGlobalVisualStudio6Generator.cxx       |    4 +-
 Source/cmGlobalVisualStudio6Generator.h         |    8 +-
 Source/cmGlobalVisualStudio71Generator.cxx      |    4 +-
 Source/cmGlobalVisualStudio71Generator.h        |    7 +-
 Source/cmGlobalVisualStudio7Generator.cxx       |    4 +-
 Source/cmGlobalVisualStudio7Generator.h         |    8 +-
 Source/cmGlobalVisualStudio8Generator.cxx       |   69 ++++++++++-
 Source/cmGlobalVisualStudio8Generator.h         |   19 ++--
 Source/cmGlobalVisualStudio8Win64Generator.cxx  |   40 ------
 Source/cmGlobalVisualStudio8Win64Generator.h    |   47 -------
 Source/cmGlobalVisualStudio9Generator.cxx       |   63 ++++++++--
 Source/cmGlobalVisualStudio9Generator.h         |   16 +--
 Source/cmGlobalVisualStudio9IA64Generator.cxx   |   37 ------
 Source/cmGlobalVisualStudio9IA64Generator.h     |   47 -------
 Source/cmGlobalVisualStudio9Win64Generator.cxx  |   37 ------
 Source/cmGlobalVisualStudio9Win64Generator.h    |   47 -------
 Source/cmGlobalVisualStudioGenerator.cxx        |    6 +
 Source/cmGlobalVisualStudioGenerator.h          |    1 +
 Source/cmGlobalWatcomWMakeGenerator.cxx         |    4 +-
 Source/cmGlobalWatcomWMakeGenerator.h           |    6 +-
 Source/cmGlobalXCodeGenerator.cxx               |   27 ++++-
 Source/cmGlobalXCodeGenerator.h                 |    6 +-
 Source/cmake.cxx                                |  147 +++++++++++------------
 Source/cmake.h                                  |    8 +-
 54 files changed, 495 insertions(+), 814 deletions(-)
 create mode 100644 Source/cmGlobalGeneratorFactory.h
 delete mode 100644 Source/cmGlobalVisualStudio10IA64Generator.cxx
 delete mode 100644 Source/cmGlobalVisualStudio10IA64Generator.h
 delete mode 100644 Source/cmGlobalVisualStudio10Win64Generator.cxx
 delete mode 100644 Source/cmGlobalVisualStudio10Win64Generator.h
 delete mode 100644 Source/cmGlobalVisualStudio11ARMGenerator.cxx
 delete mode 100644 Source/cmGlobalVisualStudio11ARMGenerator.h
 delete mode 100644 Source/cmGlobalVisualStudio11Win64Generator.cxx
 delete mode 100644 Source/cmGlobalVisualStudio11Win64Generator.h
 delete mode 100644 Source/cmGlobalVisualStudio8Win64Generator.cxx
 delete mode 100644 Source/cmGlobalVisualStudio8Win64Generator.h
 delete mode 100644 Source/cmGlobalVisualStudio9IA64Generator.cxx
 delete mode 100644 Source/cmGlobalVisualStudio9IA64Generator.h
 delete mode 100644 Source/cmGlobalVisualStudio9Win64Generator.cxx
 delete mode 100644 Source/cmGlobalVisualStudio9Win64Generator.h


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list