[Cmake-commits] CMake branch, release, updated. v2.8.9-598-g52cd8e8

David Cole david.cole at kitware.com
Wed Oct 24 12:03:13 EDT 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, release has been updated
       via  52cd8e83d4c7dfefec2058e7afd3523cfa572ce9 (commit)
       via  4bda4b1c1cd6a75e5cf84d4275bd451ce8a5631c (commit)
       via  f551fa62450379b41b510054948e097582538357 (commit)
       via  02b993b1ca3fc569aca2af6b0cf7eb442b5b8e2a (commit)
       via  2b5635ee2327a41688a7ccfdf80a534a47268131 (commit)
       via  23a257628bb70f0e182c9b537ddab2b452fbddb0 (commit)
       via  c26373f6ca9762c0bd9950eb3aa5f1183f370842 (commit)
       via  0276f4e9f42e4ac07c2f9dc48f7576f863e9326f (commit)
       via  dc0b0f6b6d70a9f3438d110cfc2840f61319151a (commit)
       via  2362bc8e80ee657dd733bbf4b698199ce3b656fe (commit)
       via  e386992152ac3ba5fe2abb66a56ea6ae99d6e8f3 (commit)
       via  95d590ddbac80780f437252de4522b78f4069f45 (commit)
       via  04421042b3eb5977208929ba01faf7816c2f8f69 (commit)
       via  0cc00b06d807a6cbdd74eb1f8f518c2266eecabc (commit)
       via  9c42e9831d5e73b68467783c74c251b905b103d6 (commit)
       via  a22f4fabb7eb6a978c5f0ddf7988d1c57793f7e6 (commit)
       via  5052fbc93d8158e44d1a44f167ba00f39813b82f (commit)
       via  df5c1db8c0abf0b82f6b7c1289b0325323517333 (commit)
       via  62d58bf52c4f2c33bbdd5fb2f5a6c1b513d36200 (commit)
       via  1cd2ec1072bb5508293aff602f2bc320660daf87 (commit)
       via  4c5db6ce6c2bb90f0f7eaa54f31e35767d9e5816 (commit)
      from  f1189ee60e78fb4a5fd1fb8c3337efdf6f5d602f (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=52cd8e83d4c7dfefec2058e7afd3523cfa572ce9
commit 52cd8e83d4c7dfefec2058e7afd3523cfa572ce9
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Wed Oct 24 11:43:00 2012 -0400
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Wed Oct 24 11:43:00 2012 -0400

    CMake 2.8.10-rc3

diff --git a/ChangeLog.manual b/ChangeLog.manual
index a7fd2db..ecf03f5 100644
--- a/ChangeLog.manual
+++ b/ChangeLog.manual
@@ -1,3 +1,19 @@
+Changes in CMake 2.8.10-rc3 (since 2.8.10-rc2)
+----------------------------------------------
+Rolf Eike Beer (2):
+      SelectLibraryConfigurations: add testcase
+      SelectLibraryConfigurations: fix for release and debug libs being the same
+
+Stephen Kelly (5):
+      BasicConfigVersion: Make docs refer to the macro, not the module name
+      Document LOCATION undefined behavior with use of LINKER_LANGUAGE.
+      GenEx: Add an accessor for imported targets in a makefile.
+      GenEx: Create cmGeneratorTargets for imported targets.
+      GexEx: Validate Target names and property names differently.
+
+Thomas Arcila (1):
+      SelectLibraryConfigurations: Fix foreach(x IN LISTS ...) syntax
+
 Changes in CMake 2.8.10-rc2 (since 2.8.10-rc1)
 ----------------------------------------------
 Alex Neundorf (2):
diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index 54bab40..ab65d90 100644
--- a/Source/CMakeVersion.cmake
+++ b/Source/CMakeVersion.cmake
@@ -3,4 +3,4 @@ set(CMake_VERSION_MAJOR 2)
 set(CMake_VERSION_MINOR 8)
 set(CMake_VERSION_PATCH 10)
 set(CMake_VERSION_TWEAK 0)
-set(CMake_VERSION_RC 2)
+set(CMake_VERSION_RC 3)

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4bda4b1c1cd6a75e5cf84d4275bd451ce8a5631c
commit 4bda4b1c1cd6a75e5cf84d4275bd451ce8a5631c
Merge: f551fa6 f1189ee
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Wed Oct 24 11:40:33 2012 -0400
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Wed Oct 24 11:40:33 2012 -0400

    Merge branch 'release'


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

Summary of changes:
 ChangeLog.manual                                   |   16 +++++
 .../BasicConfigVersion-AnyNewerVersion.cmake.in    |    2 +-
 .../BasicConfigVersion-SameMajorVersion.cmake.in   |    2 +-
 Modules/SelectLibraryConfigurations.cmake          |   18 ++++--
 Source/CMakeVersion.cmake                          |    2 +-
 Source/cmDocumentLocationUndefined.h               |    4 +-
 Source/cmExtraEclipseCDT4Generator.cxx             |    4 +
 Source/cmGeneratorExpressionEvaluator.cxx          |   17 ++++--
 Source/cmGlobalGenerator.cxx                       |   10 +++
 Source/cmLocalGenerator.cxx                        |    4 +
 Source/cmMakefile.h                                |    4 +
 Tests/CMakeOnly/CMakeLists.txt                     |    2 +
 .../SelectLibraryConfigurations/CMakeLists.txt     |   64 ++++++++++++++++++++
 .../TargetIncludeDirectories/CMakeLists.txt        |   11 ++++
 .../TargetIncludeDirectories/main.cpp              |    1 +
 15 files changed, 143 insertions(+), 18 deletions(-)
 create mode 100644 Tests/CMakeOnly/SelectLibraryConfigurations/CMakeLists.txt


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list