[Cmake-commits] CMake branch, master, updated. v3.5.1-320-g9b56528

2016-03-25 Thread Kitware Robot
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  9b5652846f131f188f919b6d5f7a906d43d2969a (commit)
  from  06a8dc7003355c592471c64d7a88edc6917e6a12 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9b5652846f131f188f919b6d5f7a906d43d2969a
commit 9b5652846f131f188f919b6d5f7a906d43d2969a
Author: Kitware Robot <kwro...@kitware.com>
AuthorDate: Sat Mar 26 00:01:10 2016 -0400
Commit: Kitware Robot <kwro...@kitware.com>
CommitDate: Sat Mar 26 00:01:10 2016 -0400

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index 2377831..6a49ca2 100644
--- a/Source/CMakeVersion.cmake
+++ b/Source/CMakeVersion.cmake
@@ -1,5 +1,5 @@
 # CMake version number components.
 set(CMake_VERSION_MAJOR 3)
 set(CMake_VERSION_MINOR 5)
-set(CMake_VERSION_PATCH 20160325)
+set(CMake_VERSION_PATCH 20160326)
 #set(CMake_VERSION_RC 1)

---

Summary of changes:
 Source/CMakeVersion.cmake |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v3.5.1-657-g021e01c

2016-03-25 Thread Gregor Jasny via Cmake-commits
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, next has been updated
   via  021e01c423475f7c358a50775e0fc4073be8e75c (commit)
   via  62473f5689e6b03ec92b266b5feb822aec2b88dc (commit)
  from  7d8ab1b2b2ee7cc15940cf6e97ba034d91bbb074 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=021e01c423475f7c358a50775e0fc4073be8e75c
commit 021e01c423475f7c358a50775e0fc4073be8e75c
Merge: 7d8ab1b 62473f5
Author: Gregor Jasny 
AuthorDate: Fri Mar 25 17:35:18 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Fri Mar 25 17:35:18 2016 -0400

Merge topic 'xcode73-xctest-location' into next

62473f56 Xcode: Fixup XCTest bundle location for Xcode 7.3


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=62473f5689e6b03ec92b266b5feb822aec2b88dc
commit 62473f5689e6b03ec92b266b5feb822aec2b88dc
Author: Gregor Jasny 
AuthorDate: Fri Mar 25 22:20:14 2016 +0100
Commit: Gregor Jasny 
CommitDate: Fri Mar 25 22:20:14 2016 +0100

Xcode: Fixup XCTest bundle location for Xcode 7.3

Prior to Xcode 7.3 a XCTest bundle was built like an ordinary
bundle. But starting with Xcode 7.3 it is implicitely built as
a plugin for the test host. It looks like in that case the
'Build Products Path' is ignored.

This patch simply sets the CMake target output path to the value
Xcode expects internally to get a matching view of both.

The command:

  xcodebuild -showBuildSettings -target CocoaExampleTests -configuration 
Debug

Output with Xcode 7.2:

  TARGET_BUILD_DIR = .../Tests/XCTest/Debug

Output with Xcode 7.3

  TARGET_BUILD_DIR = 
.../Tests/XCTest/Debug/CocoaExample.app/Contents/PlugIns

Signed-off-by: Gregor Jasny 

diff --git a/Modules/FindXCTest.cmake b/Modules/FindXCTest.cmake
index 3cd9c22..805a58c 100644
--- a/Modules/FindXCTest.cmake
+++ b/Modules/FindXCTest.cmake
@@ -140,6 +140,10 @@ function(xctest_add_bundle target testee)
   set_target_properties(${target} PROPERTIES
 XCODE_ATTRIBUTE_BUNDLE_LOADER "$(TEST_HOST)"
 XCODE_ATTRIBUTE_TEST_HOST "$")
+  if(NOT XCODE_VERSION VERSION_LESS 7.3)
+set_target_properties(${target} PROPERTIES
+  LIBRARY_OUTPUT_DIRECTORY "$/../PlugIns")
+  endif()
 else(XCODE)
   target_link_libraries(${target}
 PRIVATE -bundle_loader $)

---

Summary of changes:
 Modules/FindXCTest.cmake |4 
 1 file changed, 4 insertions(+)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.5.1-319-g06a8dc7

2016-03-25 Thread Brad King
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  06a8dc7003355c592471c64d7a88edc6917e6a12 (commit)
   via  c70ac0970dde1510322ed3a398f8656e38ae06c8 (commit)
  from  484d7ca0e0660f3a5573e83c917f8a7dc6c4e183 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=06a8dc7003355c592471c64d7a88edc6917e6a12
commit 06a8dc7003355c592471c64d7a88edc6917e6a12
Merge: 484d7ca c70ac09
Author: Brad King 
AuthorDate: Fri Mar 25 09:41:46 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Fri Mar 25 09:41:46 2016 -0400

Merge topic 'cpackcomponents-priv-var'

c70ac097 CPack: Exclude additional internal variables from CPackConfig.cmake


---

Summary of changes:
 Modules/CPackComponent.cmake |   44 +-
 1 file changed, 22 insertions(+), 22 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v3.5.1-655-g7d8ab1b

2016-03-25 Thread Brad King
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, next has been updated
   via  7d8ab1b2b2ee7cc15940cf6e97ba034d91bbb074 (commit)
   via  06a8dc7003355c592471c64d7a88edc6917e6a12 (commit)
  from  2632c2fdd29797357b76e0a33b2b0759801e6928 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7d8ab1b2b2ee7cc15940cf6e97ba034d91bbb074
commit 7d8ab1b2b2ee7cc15940cf6e97ba034d91bbb074
Merge: 2632c2f 06a8dc7
Author: Brad King 
AuthorDate: Fri Mar 25 09:41:52 2016 -0400
Commit: Brad King 
CommitDate: Fri Mar 25 09:41:52 2016 -0400

Merge branch 'master' into next


---

Summary of changes:


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v3.5.1-653-g2632c2f

2016-03-25 Thread Brad King
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, next has been updated
   via  2632c2fdd29797357b76e0a33b2b0759801e6928 (commit)
   via  c41b9dc7b5d9e38ec89c5865ee7a8d6409ad4dea (commit)
   via  484d7ca0e0660f3a5573e83c917f8a7dc6c4e183 (commit)
  from  fed393454c55d27d972862be9f5e2df8c0a35220 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2632c2fdd29797357b76e0a33b2b0759801e6928
commit 2632c2fdd29797357b76e0a33b2b0759801e6928
Merge: fed3934 c41b9dc
Author: Brad King 
AuthorDate: Fri Mar 25 09:21:22 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Fri Mar 25 09:21:22 2016 -0400

Merge topic 'test-fix-FindGTK2-cxx11' into next

c41b9dc7 Tests: Fix GTK2Components.gtkmm test with sigc++ >= 2.5.1
484d7ca0 CMake Nightly Date Stamp


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c41b9dc7b5d9e38ec89c5865ee7a8d6409ad4dea
commit c41b9dc7b5d9e38ec89c5865ee7a8d6409ad4dea
Author: Brad King 
AuthorDate: Fri Mar 25 09:19:33 2016 -0400
Commit: Brad King 
CommitDate: Fri Mar 25 09:19:33 2016 -0400

Tests: Fix GTK2Components.gtkmm test with sigc++ >= 2.5.1

FindGTK2 adds compile features to GTK2::sigc++ so that clients will
compile as C++11 or above.  However, our test case covers using just the
library list variables instead of the imported targets.  Fix this case
by propagating the compile features manually.

diff --git a/Tests/FindGTK2/gtkmm/CMakeLists.txt 
b/Tests/FindGTK2/gtkmm/CMakeLists.txt
index 32aafe2..eb0b7aa 100644
--- a/Tests/FindGTK2/gtkmm/CMakeLists.txt
+++ b/Tests/FindGTK2/gtkmm/CMakeLists.txt
@@ -12,3 +12,8 @@ target_link_libraries(gtkmm-target GTK2::gtkmm)
 add_executable(gtkmm-all-libs WIN32 main.cpp helloworld.cpp helloworld.h)
 target_link_libraries(gtkmm-all-libs ${GTK2_LIBRARIES})
 target_include_directories(gtkmm-all-libs PRIVATE ${GTK2_INCLUDE_DIRS})
+
+# Linking via the library variables does not cause compile feature
+# requirements to propagate.  Do it manually for purposes of this test.
+get_property(features TARGET GTK2::sigc++ PROPERTY INTERFACE_COMPILE_FEATURES)
+set_property(TARGET gtkmm-all-libs PROPERTY COMPILE_FEATURES ${features})

---

Summary of changes:
 Source/CMakeVersion.cmake   |2 +-
 Tests/FindGTK2/gtkmm/CMakeLists.txt |5 +
 2 files changed, 6 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits