[Cmake-commits] CMake branch, master, updated. v3.15.0-rc1-115-ga5d4457

2019-06-19 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  a5d44570832414be3879a8e77f6079811619f1fc (commit)
   via  a7e34e6952cf6c74ce2d30824fb460155f743e99 (commit)
   via  7c7c8a01c54ff6c18b3fa944a9ac47c01defb608 (commit)
   via  421be81413a6020193716a5416da1a060daefbd4 (commit)
   via  65fc109dc62ef4853c010e06a938069e0bfc8c50 (commit)
   via  830b332f32ac0782fe3380eb7b0b55fa8f81f456 (commit)
   via  0dd6772a89df2e7640187028573f7d981bbd0f67 (commit)
   via  e4181eeaf2c6f5204443177fe71176ed94977c1b (commit)
   via  4cb652e1d35d5ea98cde36b8a877e43ad3e71a0d (commit)
   via  7251d54bd104680317c58e08d3244b57ca5b57b0 (commit)
  from  c9f284c73634b7935a12c1912dbb8eae71650ae5 (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=a5d44570832414be3879a8e77f6079811619f1fc
commit a5d44570832414be3879a8e77f6079811619f1fc
Merge: a7e34e6 421be81
Author: Brad King 
AuthorDate: Wed Jun 19 11:22:39 2019 +
Commit: Kitware Robot 
CommitDate: Wed Jun 19 07:22:50 2019 -0400

Merge topic 'FindCUDA-more-libs'

421be81413 FindCUDA: Add nvToolsExt and OpenCL libraries

Acked-by: Kitware Robot 
Merge-request: !3456


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a7e34e6952cf6c74ce2d30824fb460155f743e99
commit a7e34e6952cf6c74ce2d30824fb460155f743e99
Merge: 7c7c8a0 65fc109
Author: Brad King 
AuthorDate: Wed Jun 19 07:22:18 2019 -0400
Commit: Brad King 
CommitDate: Wed Jun 19 07:22:18 2019 -0400

Merge branch 'release-3.15'


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7c7c8a01c54ff6c18b3fa944a9ac47c01defb608
commit 7c7c8a01c54ff6c18b3fa944a9ac47c01defb608
Merge: c9f284c 830b332
Author: Brad King 
AuthorDate: Wed Jun 19 11:19:12 2019 +
Commit: Kitware Robot 
CommitDate: Wed Jun 19 07:21:02 2019 -0400

Merge topic 'FindBoost-component'

830b332f32 FindBoost: Add tests for legacy variables
0dd6772a89 FindBoost: Add legacy variables and targets for compatibility
e4181eeaf2 FindBoost: Don't overwrite Boost_${_comp}_FOUND
4cb652e1d3 Tests.RunCMake.FindBoost: Fix example BoostConfig
7251d54bd1 Tests.FindBoost: Don't use BoostConfig in MODULE test

Acked-by: Kitware Robot 
Merge-request: !3438


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=421be81413a6020193716a5416da1a060daefbd4
commit 421be81413a6020193716a5416da1a060daefbd4
Author: Eyal Rozenberg 
AuthorDate: Mon Jun 17 21:22:14 2019 +0300
Commit: Brad King 
CommitDate: Tue Jun 18 08:56:34 2019 -0400

FindCUDA: Add nvToolsExt and OpenCL libraries

Find these libraries with CUDA 5 and above.

Fixes: #19386

diff --git a/Modules/FindCUDA.cmake b/Modules/FindCUDA.cmake
index 3315505..b6859aa 100644
--- a/Modules/FindCUDA.cmake
+++ b/Modules/FindCUDA.cmake
@@ -375,6 +375,11 @@ The script defines the following variables::
   CUDA_nvcuvid_LIBRARY  -- CUDA Video Decoder library.
Only available for CUDA version 3.2+.
Windows only.
+  CUDA_nvToolsExt_LIBRARY
+-- NVIDA CUDA Tools Extension library.
+   Available for CUDA version 5+.
+  CUDA_OpenCL_LIBRARY   -- NVIDA CUDA OpenCL library.
+   Available for CUDA version 5+.
 
 #]===]
 
@@ -642,6 +647,8 @@ macro(cuda_unset_include_and_libraries)
   unset(CUDA_npps_LIBRARY CACHE)
   unset(CUDA_nvcuvenc_LIBRARY CACHE)
   unset(CUDA_nvcuvid_LIBRARY CACHE)
+  unset(CUDA_nvToolsExt_LIBRARY CACHE)
+  unset(CUDA_OpenCL_LIBRARY CACHE)
   unset(CUDA_GPU_DETECT_OUTPUT CACHE)
 endmacro()
 
@@ -973,6 +980,11 @@ if(CUDA_VERSION VERSION_GREATER "5.0" AND CUDA_VERSION 
VERSION_LESS "9.2")
   find_cuda_helper_libs(cublas_device)
 endif()
 
+if(NOT CUDA_VERSION VERSION_LESS "5.0")
+  find_cuda_helper_libs(nvToolsExt)
+  find_cuda_helper_libs(OpenCL)
+endif()
+
 if(NOT CUDA_VERSION VERSION_LESS "9.0")
   # In CUDA 9.0 NPP was nppi was removed
   find_cuda_helper_libs(nppc)

---

Summary of changes:
 Modules/FindBoost.cmake| 162 -
 Modules/FindCUDA.cmake |  12 ++
 Tests/FindBoost/Test/CMakeLists.txt|   1 +
 .../FindBoost/CMakePackage/BoostConfig.cmake   |   3 +
 .../BoostConfig.cmake  |  26 
 .../BoostConfigVersion.cmake   |   7 +
 .../include/boost/version.hpp  |  34 +

[Cmake-commits] CMake branch, release, updated. v3.15.0-rc1-33-g65fc109

2019-06-19 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, release has been updated
   via  65fc109dc62ef4853c010e06a938069e0bfc8c50 (commit)
   via  830b332f32ac0782fe3380eb7b0b55fa8f81f456 (commit)
   via  0dd6772a89df2e7640187028573f7d981bbd0f67 (commit)
   via  e4181eeaf2c6f5204443177fe71176ed94977c1b (commit)
   via  4cb652e1d35d5ea98cde36b8a877e43ad3e71a0d (commit)
   via  7251d54bd104680317c58e08d3244b57ca5b57b0 (commit)
  from  e2b4fa114184a0a8eeec9c8005e09f70a8ae6832 (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 -
---

Summary of changes:
 Modules/FindBoost.cmake| 162 -
 Tests/FindBoost/Test/CMakeLists.txt|   1 +
 .../FindBoost/CMakePackage/BoostConfig.cmake   |   3 +
 .../BoostConfig.cmake  |  26 
 .../BoostConfigVersion.cmake   |   7 +
 .../include/boost/version.hpp  |  34 +
 .../CMakePackage_MissingTarget/BoostConfig.cmake   |   7 +
 .../BoostConfigVersion.cmake   |   7 +
 .../include/boost/version.hpp  |  34 +
 .../FindBoost/CMakePackage_New/BoostConfig.cmake   |  24 +++
 .../CMakePackage_New/BoostConfigVersion.cmake  |   7 +
 .../CMakePackage_New/include/boost/version.hpp |  34 +
 .../CMakePackage_New/lib/libboost_date_time.a} |   0
 .../CMakePackage_New/lib/libboost_mpi_python.a}|   0
 .../CMakePackage_New/lib/libboost_python.a}|   0
 .../lib/libboost_python_release.a} |   0
 .../CMakePackage_NoHeaderTarget/BoostConfig.cmake  |  25 
 .../BoostConfigVersion.cmake   |   7 +
 .../include/boost/version.hpp  |  34 +
 .../LegacyVars-LowercaseTargetPrefix-stdout.txt|  34 +
 .../LegacyVars-LowercaseTargetPrefix.cmake |   6 +
 .../FindBoost/LegacyVars-NoHeaderTarget.cmake  |   6 +
 .../FindBoost/LegacyVars-TargetsDefined-stdout.txt |  34 +
 .../FindBoost/LegacyVars-TargetsDefined.cmake  |   6 +
 Tests/RunCMake/FindBoost/LegacyVars.cmake  |  28 
 Tests/RunCMake/FindBoost/MissingTarget-stdout.txt  |  22 +++
 Tests/RunCMake/FindBoost/MissingTarget.cmake   |  25 
 Tests/RunCMake/FindBoost/RunCMakeTest.cmake|   8 +
 28 files changed, 576 insertions(+), 5 deletions(-)
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_LowerCaseTargetPrefix/BoostConfig.cmake
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_LowerCaseTargetPrefix/BoostConfigVersion.cmake
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_LowerCaseTargetPrefix/include/boost/version.hpp
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_MissingTarget/BoostConfig.cmake
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_MissingTarget/BoostConfigVersion.cmake
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_MissingTarget/include/boost/version.hpp
 create mode 100644 Tests/RunCMake/FindBoost/CMakePackage_New/BoostConfig.cmake
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_New/BoostConfigVersion.cmake
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_New/include/boost/version.hpp
 copy Tests/{Wrapping/vtkIncluded.cxx => 
RunCMake/FindBoost/CMakePackage_New/lib/libboost_date_time.a} (100%)
 copy Tests/{Wrapping/vtkIncluded.cxx => 
RunCMake/FindBoost/CMakePackage_New/lib/libboost_mpi_python.a} (100%)
 copy Tests/{Wrapping/vtkIncluded.cxx => 
RunCMake/FindBoost/CMakePackage_New/lib/libboost_python.a} (100%)
 copy Tests/{Wrapping/vtkIncluded.cxx => 
RunCMake/FindBoost/CMakePackage_New/lib/libboost_python_release.a} (100%)
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_NoHeaderTarget/BoostConfig.cmake
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_NoHeaderTarget/BoostConfigVersion.cmake
 create mode 100644 
Tests/RunCMake/FindBoost/CMakePackage_NoHeaderTarget/include/boost/version.hpp
 create mode 100644 
Tests/RunCMake/FindBoost/LegacyVars-LowercaseTargetPrefix-stdout.txt
 create mode 100644 
Tests/RunCMake/FindBoost/LegacyVars-LowercaseTargetPrefix.cmake
 create mode 100644 Tests/RunCMake/FindBoost/LegacyVars-NoHeaderTarget.cmake
 create mode 100644 
Tests/RunCMake/FindBoost/LegacyVars-TargetsDefined-stdout.txt
 create mode 100644 Tests/RunCMake/FindBoost/LegacyVars-TargetsDefined.cmake
 create mode 100644 Tests/RunCMake/FindBoost/LegacyVars.cmake
 create mode 100644 Tests/RunCMake/FindBoost/MissingTarget-stdout.txt
 create mode 100644 Tests/RunCMake/FindBoost/MissingTarget.cmake


hooks/post-receive
-- 
CMake
___

[Cmake-commits] CMake branch, release, updated. v3.15.0-rc1-35-g1ca4be5

2019-06-19 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, release has been updated
   via  1ca4be5d90b47894f6742d390796ec3b08001906 (commit)
   via  f7eaa342de316707d99e6ae29c693a480861560d (commit)
  from  65fc109dc62ef4853c010e06a938069e0bfc8c50 (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 -
---

Summary of changes:
 Modules/FindMPI.cmake | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.15.0-rc1-121-g7ccd9a2

2019-06-19 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  7ccd9a27df8649c17d7b6925851d4e258ea913d9 (commit)
   via  1ca4be5d90b47894f6742d390796ec3b08001906 (commit)
   via  89e80933d60766e50855f6e7d9b43d6515f6ee30 (commit)
   via  f7eaa342de316707d99e6ae29c693a480861560d (commit)
   via  631fe145e68cddd98fb42636833549d14113aa0d (commit)
   via  5d8f1a8421367aab8fc81b43a8f999862aa42190 (commit)
  from  a5d44570832414be3879a8e77f6079811619f1fc (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=7ccd9a27df8649c17d7b6925851d4e258ea913d9
commit 7ccd9a27df8649c17d7b6925851d4e258ea913d9
Merge: 89e8093 1ca4be5
Author: Brad King 
AuthorDate: Wed Jun 19 07:27:14 2019 -0400
Commit: Brad King 
CommitDate: Wed Jun 19 07:27:14 2019 -0400

Merge branch 'release-3.15'


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=89e80933d60766e50855f6e7d9b43d6515f6ee30
commit 89e80933d60766e50855f6e7d9b43d6515f6ee30
Merge: 631fe14 f7eaa34
Author: Brad King 
AuthorDate: Wed Jun 19 11:25:56 2019 +
Commit: Kitware Robot 
CommitDate: Wed Jun 19 07:26:04 2019 -0400

Merge topic 'FindMPI-imported-link-flags'

f7eaa342de FindMPI: Store imported target link flags as a list instead of a 
string

Acked-by: Kitware Robot 
Merge-request: !3449


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=631fe145e68cddd98fb42636833549d14113aa0d
commit 631fe145e68cddd98fb42636833549d14113aa0d
Merge: a5d4457 5d8f1a8
Author: Brad King 
AuthorDate: Wed Jun 19 11:23:20 2019 +
Commit: Kitware Robot 
CommitDate: Wed Jun 19 07:23:40 2019 -0400

Merge topic 'generated_export_remove_duplicate_required_cmake_lines'

5d8f1a8421 Export: A singular CMake version written for interface targets

Acked-by: Kitware Robot 
Merge-request: !3458


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5d8f1a8421367aab8fc81b43a8f999862aa42190
commit 5d8f1a8421367aab8fc81b43a8f999862aa42190
Author: Robert Maynard 
AuthorDate: Mon Jun 17 17:30:34 2019 -0400
Commit: Robert Maynard 
CommitDate: Mon Jun 17 17:38:46 2019 -0400

Export: A singular CMake version written for interface targets

diff --git a/Source/cmExportBuildFileGenerator.cxx 
b/Source/cmExportBuildFileGenerator.cxx
index 012355b..3fe84a9 100644
--- a/Source/cmExportBuildFileGenerator.cxx
+++ b/Source/cmExportBuildFileGenerator.cxx
@@ -45,6 +45,7 @@ bool 
cmExportBuildFileGenerator::GenerateMainFile(std::ostream& os)
 std::string expectedTargets;
 std::string sep;
 std::vector targets;
+bool generatedInterfaceRequired = false;
 this->GetTargets(targets);
 for (std::string const& tei : targets) {
   cmGeneratorTarget* te = this->LG->FindGeneratorTargetToUse(tei);
@@ -60,11 +61,13 @@ bool 
cmExportBuildFileGenerator::GenerateMainFile(std::ostream& os)
   this->LG->GetMakefile()->GetBacktrace());
 return false;
   }
-  if (this->GetExportTargetType(te) == cmStateEnums::INTERFACE_LIBRARY) {
-this->GenerateRequiredCMakeVersion(os, "3.0.0");
-  }
+  generatedInterfaceRequired |=
+this->GetExportTargetType(te) == cmStateEnums::INTERFACE_LIBRARY;
 }
 
+if (generatedInterfaceRequired) {
+  this->GenerateRequiredCMakeVersion(os, "3.0.0");
+}
 this->GenerateExpectedTargetsCode(os, expectedTargets);
   }
 

---

Summary of changes:
 Modules/FindMPI.cmake | 4 +++-
 Source/cmExportBuildFileGenerator.cxx | 9 ++---
 2 files changed, 9 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.15.0-rc1-123-g5773f12

2019-06-19 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  5773f12d849815c0a61f09e622e90dd56fb4f333 (commit)
   via  9e99a95c7db5be8c6b979b0170ab4cf78bb32307 (commit)
  from  7ccd9a27df8649c17d7b6925851d4e258ea913d9 (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=5773f12d849815c0a61f09e622e90dd56fb4f333
commit 5773f12d849815c0a61f09e622e90dd56fb4f333
Merge: 7ccd9a2 9e99a95
Author: Brad King 
AuthorDate: Wed Jun 19 12:22:05 2019 +
Commit: Kitware Robot 
CommitDate: Wed Jun 19 08:22:17 2019 -0400

Merge topic 'android-pie-cmp0083'

9e99a95c7d Android: ensure PIE behavior is consistent regardless CMP0083 
policy

Acked-by: Kitware Robot 
Merge-request: !3459


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9e99a95c7db5be8c6b979b0170ab4cf78bb32307
commit 9e99a95c7db5be8c6b979b0170ab4cf78bb32307
Author: Marc Chevrier 
AuthorDate: Tue Jun 18 17:34:19 2019 +0200
Commit: Brad King 
CommitDate: Wed Jun 19 08:12:45 2019 -0400

Android: ensure PIE behavior is consistent regardless CMP0083 policy

In commit c4b4d8b3a6 (POSITION_INDEPENDENT_CODE: Manage link flags for
executables, 2018-10-02, v3.14.0-rc1~395^2) we accidentally removed our
Android-specific logic for PIE under the CMP0083 OLD behavior.  Restore
it and also implement Android-specific logic for CMP0083 NEW behavior.

Fixes: #19393

diff --git a/Help/policy/CMP0083.rst b/Help/policy/CMP0083.rst
index 32acf1f..e0b09cf 100644
--- a/Help/policy/CMP0083.rst
+++ b/Help/policy/CMP0083.rst
@@ -28,6 +28,12 @@ This policy was introduced in CMake version 3.14. Use the
 Unlike most policies, CMake version |release| does not warn when this policy is
 not set and simply uses ``OLD`` behavior.
 
+.. Note::
+
+   Android platform has a special handling of ``PIE`` so it is not required
+   to use the :module:`CheckPIESupported` module to ensure flags are passed to
+   the linker.
+
 .. include:: DEPRECATED.txt
 
 Examples
diff --git a/Modules/Platform/Android/abi-common.cmake 
b/Modules/Platform/Android/abi-common.cmake
index a0b47f4..6bce3c7 100644
--- a/Modules/Platform/Android/abi-common.cmake
+++ b/Modules/Platform/Android/abi-common.cmake
@@ -12,6 +12,26 @@ if(NOT DEFINED CMAKE_POSITION_INDEPENDENT_CODE
   set(CMAKE_POSITION_INDEPENDENT_CODE ON)
 endif()
 
+cmake_policy(GET CMP0083 _CMP0083)
+if(_CMP0083 STREQUAL NEW)
+  # PIE Flags are managed by compiler configuration files
+  if(CMAKE_SYSTEM_VERSION VERSION_GREATER_EQUAL 16)
+# ensure PIE flags are passed to the linker
+set(CMAKE_C_LINK_PIE_SUPPORTED YES CACHE INTERNAL "PIE (C)")
+set(CMAKE_CXX_LINK_PIE_SUPPORTED YES CACHE INTERNAL "PIE (CXX)")
+if(CMAKE_SYSTEM_VERSION VERSION_GREATER_EQUAL 21)
+  # no PIE executable are no longer supported
+  set(CMAKE_C_LINK_NO_PIE_SUPPORTED NO CACHE INTERNAL "NO_PIE (C)")
+  set(CMAKE_CXX_LINK_NO_PIE_SUPPORTED NO CACHE INTERNAL "NO_PIE (CXX)")
+endif()
+  endif()
+else()
+  if(CMAKE_POSITION_INDEPENDENT_CODE)
+string(APPEND _ANDROID_ABI_INIT_EXE_LDFLAGS " -fPIE -pie")
+  endif()
+endif()
+unset(_CMP0083)
+
 string(APPEND _ANDROID_ABI_INIT_EXE_LDFLAGS " -Wl,--gc-sections")
 
 if(NOT _ANDROID_ABI_INIT_EXE_LDFLAGS_NO_nocopyreloc)

---

Summary of changes:
 Help/policy/CMP0083.rst   |  6 ++
 Modules/Platform/Android/abi-common.cmake | 20 
 2 files changed, 26 insertions(+)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, release, updated. v3.15.0-rc1-37-g00ad0b9

2019-06-19 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, release has been updated
   via  00ad0b9d127fb0587443c6346aacb72a5c96f234 (commit)
   via  9e99a95c7db5be8c6b979b0170ab4cf78bb32307 (commit)
  from  1ca4be5d90b47894f6742d390796ec3b08001906 (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 -
---

Summary of changes:
 Help/policy/CMP0083.rst   |  6 ++
 Modules/Platform/Android/abi-common.cmake | 20 
 2 files changed, 26 insertions(+)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.15.0-rc1-127-g6425a5f

2019-06-19 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  6425a5f3a06459914cca17172e2b6f557e7d79a4 (commit)
   via  08f935536780d54e1a678fe3e1ff590e90edb424 (commit)
   via  00ad0b9d127fb0587443c6346aacb72a5c96f234 (commit)
   via  c54fc8213bfbd33b9584188b90cd494e2bf515db (commit)
  from  5773f12d849815c0a61f09e622e90dd56fb4f333 (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=6425a5f3a06459914cca17172e2b6f557e7d79a4
commit 6425a5f3a06459914cca17172e2b6f557e7d79a4
Merge: 08f9355 00ad0b9
Author: Brad King 
AuthorDate: Wed Jun 19 08:23:31 2019 -0400
Commit: Brad King 
CommitDate: Wed Jun 19 08:23:31 2019 -0400

Merge branch 'release-3.15'


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=08f935536780d54e1a678fe3e1ff590e90edb424
commit 08f935536780d54e1a678fe3e1ff590e90edb424
Merge: 5773f12 c54fc82
Author: Brad King 
AuthorDate: Wed Jun 19 08:23:27 2019 -0400
Commit: Brad King 
CommitDate: Wed Jun 19 08:23:27 2019 -0400

Merge branch 'release-3.14'


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c54fc8213bfbd33b9584188b90cd494e2bf515db
commit c54fc8213bfbd33b9584188b90cd494e2bf515db
Merge: f3e9a6f 9e99a95
Author: Brad King 
AuthorDate: Wed Jun 19 08:20:25 2019 -0400
Commit: Brad King 
CommitDate: Wed Jun 19 08:20:25 2019 -0400

Merge branch 'android-pie-cmp0083' into release-3.14

Merge-request: !3459


---

Summary of changes:


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, release, updated. v3.15.0-rc2

2019-06-19 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, release has been updated
   via  5c7880956f9b3daea561c7bf817b27aa47b53dd0 (commit)
  from  00ad0b9d127fb0587443c6346aacb72a5c96f234 (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 -
---

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
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake annotated tag, v3.15.0-rc2, created. v3.15.0-rc2

2019-06-19 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 annotated tag, v3.15.0-rc2 has been created
at  7410b254c77670dc1eff7e68c36c819ae48beff5 (tag)
   tagging  5c7880956f9b3daea561c7bf817b27aa47b53dd0 (commit)
  replaces  v3.15.0-rc1
 tagged by  Brad King
on  Wed Jun 19 09:45:33 2019 -0400

- Log -
CMake 3.15.0-rc2
-BEGIN PGP SIGNATURE-

iQJKBAABCgA0FiEExsJlMku+vcNQtRPQLSzvEDSSFoQFAl0KPH0WHGJyYWQua2lu
Z0BraXR3YXJlLmNvbQAKCRAtLO8QNJIWhJv/D/0YQBJ5rol/HCahNZ1ZZu4sJLGW
SoxLbIYoG8FZV6XMa+JrddzB1+9scS10glRSlfOadqlf91hAk6Z7KAjspQ3nANUA
l9jGdg+GKbceLXA+vG9TUt2uct55AFa23L6H5rXPlivhSYCU11ztZJA5GW18tDTP
ZB5CWFSaSHDcYS6qK7oDNuKzFlA1gTP1ZO2HI1tfQ983q+sHaQ+hAJg5M/5ZkwaP
hm1cduJJdNxEiCsjggziHC85CllulukwwfrJLlv1epJfWD1KoK7GXN/8j8fMzc56
cp7pbeooUi959OnPw8YDbdlLJreQMx3ISvN8tvF3lx4Rboc5DGtZLbcWvmuhXPyt
xlmxawQRZwuOtO4FGXqgC85QRHKoIyB1SGJ0dpJvL8jCMN9NuzaH9JR3w037pv2k
nIqN0oH4pvUSjpzaebtfu8srRerFx3Ljk6tBXT5tAbrRAkexEvDajB9bH42LZizx
eMYYtve2b3vDblSEQSa/g6YgcKUkRlvccZhN4L9/mOHA17tjgDSyGE2EboR1bN2V
5pPf//DPh0c5tHFd6Hy9EtKsjjiPzzHnSlSfaqvaUi5Q+l79cEd685h8sAsdxSPB
ihLrMo2Rp6pHgd2YHLIqCHGmCrx3YiiqzpsiUM+NeHByx9GtukOzYhXM9mAnMsaH
KIj55949YwAwftq7OA==
=CC/y
-END PGP SIGNATURE-

Alexander Grund (5):
  Tests.FindBoost: Don't use BoostConfig in MODULE test
  Tests.RunCMake.FindBoost: Fix example BoostConfig
  FindBoost: Don't overwrite Boost_${_comp}_FOUND
  FindBoost: Add legacy variables and targets for compatibility
  FindBoost: Add tests for legacy variables

Alexander Neumann (1):
  FindBLAS: Add second try for OpenBLAS with thread libraries.

Brad King (21):
  Merge branch 'doc-FindEnvModule-typos' into release-3.15
  Merge branch 'cpack-nuget-case' into release-3.15
  Help: Document XLClang compiler id
  Merge branch 'doc-xlclang-id' into release-3.15
  fileapi: Factor out helper to construct a version object
  cmake: Simplify implementation of -E capabilities
  cmake: Teach -E capabilities to report supported fileapi requests
  Merge branch 'autogen_header_in_symbolic_path_fix' into release-3.15
  Merge branch 'capabilities-fileapi' into release-3.15
  Merge branch 'CheckCXXSymbolExists-xref' into release-3.15
  cmake-gui: Update Qt copyright holder in About dialog
  fileapi: Suppress lint warning about non-move with old jsoncpp
  Merge branch 'capabilities-fileapi' into release-3.15
  Merge branch 'find_package_prefer_config_fix' into release-3.15
  Merge branch 'FindBLAS-OpenBLAS-thread' into release-3.15
  Help: Document what project() calls use CMAKE_PROJECT_INCLUDE and friends
  Merge branch 'doc-project-include' into release-3.15
  Merge branch 'FindBoost-component' into release-3.15
  Merge branch 'FindMPI-imported-link-flags' into release-3.15
  Merge branch 'android-pie-cmp0083' into release-3.15
  CMake 3.15.0-rc2

Craig Scott (4):
  Help: Trivial typo and grammar fixes for FindEnvModules
  Help: Move ADDITIONAL_MAKE_CLEAN_FILES dir prop to deprecated section
  Merge branch 'additional_clean_files_help' into release-3.15
  Merge branch 'cmake-gui-qt-notice' into release-3.15

Cristian Adam (1):
  find_package: Fixed CMAKE_FIND_PACKAGE_PREFER_CONFIG Module fallback

Marc Chevrier (1):
  Android: ensure PIE behavior is consistent regardless CMP0083 policy

Mathieu Malaterre (1):
  CPack/NuGet: Find nuget tool on case sensitive file system

Robert Maynard (1):
  FindMPI: Store imported target link flags as a list instead of a string

Rolf Eike Beer (1):
  CheckCXXSymbolExists: reference to CheckCXXSourceCompiles instead of C 
version

Sebastian Holtermann (2):
  Autogen: Fix header detection for paths with symbolic links
  Help: Improve ADDITIONAL_CLEAN_FILES documentation

---


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.15.0-rc2-91-g90bd7d0

2019-06-19 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  90bd7d0ecf02688afb36257deb35699fd86ca781 (commit)
   via  5c7880956f9b3daea561c7bf817b27aa47b53dd0 (commit)
  from  6425a5f3a06459914cca17172e2b6f557e7d79a4 (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=90bd7d0ecf02688afb36257deb35699fd86ca781
commit 90bd7d0ecf02688afb36257deb35699fd86ca781
Merge: 6425a5f 5c78809
Author: Brad King 
AuthorDate: Wed Jun 19 09:46:45 2019 -0400
Commit: Brad King 
CommitDate: Wed Jun 19 09:46:45 2019 -0400

Merge branch 'release-3.15'


---

Summary of changes:


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.15.0-rc2-92-g3e1dac7

2019-06-19 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  3e1dac739155cdbc05dc8a1e328c029af28f614b (commit)
  from  90bd7d0ecf02688afb36257deb35699fd86ca781 (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=3e1dac739155cdbc05dc8a1e328c029af28f614b
commit 3e1dac739155cdbc05dc8a1e328c029af28f614b
Author: Kitware Robot 
AuthorDate: Thu Jun 20 00:01:07 2019 -0400
Commit: Kitware Robot 
CommitDate: Thu Jun 20 00:01:07 2019 -0400

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index e9e4c29..39d6e36 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 15)
-set(CMake_VERSION_PATCH 20190619)
+set(CMake_VERSION_PATCH 20190620)
 #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
https://cmake.org/mailman/listinfo/cmake-commits