diff options
author | Brad King <brad.king@kitware.com> | 2017-03-22 12:51:54 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-03-22 12:51:59 (GMT) |
commit | 56c39d88363b3a0518bde1569d18ef1bdbeb01e7 (patch) | |
tree | 14430d55136d7ef1b14395ce4123ed19864914a7 /Help | |
parent | 53e2ef1bb4434081bedce3742105e378452c4c38 (diff) | |
parent | 6c8326749fccd37afd5343d926d650c87ecdfb9f (diff) | |
download | CMake-56c39d88363b3a0518bde1569d18ef1bdbeb01e7.zip CMake-56c39d88363b3a0518bde1569d18ef1bdbeb01e7.tar.gz CMake-56c39d88363b3a0518bde1569d18ef1bdbeb01e7.tar.bz2 |
Merge topic 'add-CheckIPOSupported-module'
6c832674 Tests for 'CheckIPOSupported' module
fdb2ba25 CheckIPOSupported: New module to check for compiler/cmake IPO support
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !558
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-modules.7.rst | 1 | ||||
-rw-r--r-- | Help/module/CheckIPOSupported.rst | 1 | ||||
-rw-r--r-- | Help/release/dev/CheckIPOSupported.rst | 6 |
3 files changed, 8 insertions, 0 deletions
diff --git a/Help/manual/cmake-modules.7.rst b/Help/manual/cmake-modules.7.rst index 5e96d79..1e8342c 100644 --- a/Help/manual/cmake-modules.7.rst +++ b/Help/manual/cmake-modules.7.rst @@ -27,6 +27,7 @@ All Modules /module/CheckFortranFunctionExists /module/CheckFortranSourceCompiles /module/CheckFunctionExists + /module/CheckIPOSupported /module/CheckIncludeFileCXX /module/CheckIncludeFile /module/CheckIncludeFiles diff --git a/Help/module/CheckIPOSupported.rst b/Help/module/CheckIPOSupported.rst new file mode 100644 index 0000000..9c8a77b --- /dev/null +++ b/Help/module/CheckIPOSupported.rst @@ -0,0 +1 @@ +.. cmake-module:: ../../Modules/CheckIPOSupported.cmake diff --git a/Help/release/dev/CheckIPOSupported.rst b/Help/release/dev/CheckIPOSupported.rst new file mode 100644 index 0000000..dbc84e6 --- /dev/null +++ b/Help/release/dev/CheckIPOSupported.rst @@ -0,0 +1,6 @@ +CheckIPOSupported +----------------- + +* A :module:`CheckIPOSupported` module was added to help projects + check whether interprocedural optimization (IPO) is supported by + the current toolchain and CMake version. |