[Cmake-commits] CMake branch, next, updated. v3.3.2-3316-gcf947f4

Stephen Kelly steveire at gmail.com
Sat Sep 26 15:18:22 EDT 2015


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  cf947f4f892164a40b826d85b2ea744b965a1116 (commit)
       via  256c78ad4474d9e1d86b5ac420fb95b7eeb17b90 (commit)
      from  2e6539012ad7a2099dce5559bc13246d7bb1e88d (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=cf947f4f892164a40b826d85b2ea744b965a1116
commit cf947f4f892164a40b826d85b2ea744b965a1116
Merge: 2e65390 256c78a
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sat Sep 26 15:18:22 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sat Sep 26 15:18:22 2015 -0400

    Merge topic 'optimize-variable-replacement' into next
    
    256c78ad Build: Set CMP0053 to NEW.


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=256c78ad4474d9e1d86b5ac420fb95b7eeb17b90
commit 256c78ad4474d9e1d86b5ac420fb95b7eeb17b90
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Aug 23 18:29:47 2015 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Sat Sep 26 21:17:22 2015 +0200

    Build: Set CMP0053 to NEW.
    
    If this policy is WARN, then the ReplaceVariableInString is executed with both
    the new algorithm and the OLD slow algorithm.  The NEW algorithm should be used
    wherever it works.

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 94d138c..c96f68b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -13,6 +13,9 @@ cmake_minimum_required(VERSION 2.8.4 FATAL_ERROR)
 if(POLICY CMP0025)
   cmake_policy(SET CMP0025 NEW)
 endif()
+if(POLICY CMP0053)
+  cmake_policy(SET CMP0053 NEW)
+endif()
 project(CMake)
 
 if(CMAKE_BOOTSTRAP)

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

Summary of changes:
 CMakeLists.txt |    3 +++
 1 file changed, 3 insertions(+)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list