[Cmake-commits] CMake branch, master, updated. v3.9.0-457-gaf06bef

Kitware Robot kwrobot at kitware.com
Thu Aug 10 09:15:10 EDT 2017


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  af06befe6624dc07abc14d5f074b33f177f607db (commit)
       via  8d56308c44efb02515ce8f7608ca8a92423fb92f (commit)
      from  1b63d7cf62d00b347830018239947aa7810da3ad (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=af06befe6624dc07abc14d5f074b33f177f607db
commit af06befe6624dc07abc14d5f074b33f177f607db
Merge: 1b63d7c 8d56308
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Aug 10 13:06:54 2017 +0000
Commit:     Kitware Robot <kwrobot at kitware.com>
CommitDate: Thu Aug 10 09:06:58 2017 -0400

    Merge topic 'doc-CMP0069-typos'
    
    8d56308c Help: Fix module and function names in CMP0069 examples
    
    Acked-by: Kitware Robot <kwrobot at kitware.com>
    Merge-request: !1122


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8d56308c44efb02515ce8f7608ca8a92423fb92f
commit 8d56308c44efb02515ce8f7608ca8a92423fb92f
Author:     Ruslan Baratov <ruslan_baratov at yahoo.com>
AuthorDate: Wed Aug 9 19:08:18 2017 +0300
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Thu Aug 10 09:03:49 2017 -0400

    Help: Fix module and function names in CMP0069 examples
    
    Fixes: #17153

diff --git a/Help/policy/CMP0069.rst b/Help/policy/CMP0069.rst
index b8f5d80..0d5ddfd 100644
--- a/Help/policy/CMP0069.rst
+++ b/Help/policy/CMP0069.rst
@@ -55,8 +55,8 @@ Produce a fatal error if support is not available:
   cmake_minimum_required(VERSION 3.9) # CMP0069 NEW
   project(foo)
 
-  include(CheckIPOSupport)
-  check_ipo_support()
+  include(CheckIPOSupported)
+  check_ipo_supported()
 
   # ...
 
@@ -69,11 +69,11 @@ Apply IPO flags only if compiler supports it:
   cmake_minimum_required(VERSION 3.9) # CMP0069 NEW
   project(foo)
 
-  include(CheckIPOSupport)
+  include(CheckIPOSupported)
 
   # ...
 
-  check_ipo_support(RESULT result)
+  check_ipo_supported(RESULT result)
   if(result)
     set_property(TARGET ... PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
   endif()

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

Summary of changes:
 Help/policy/CMP0069.rst |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list