diff options
author | Brad King <brad.king@kitware.com> | 2016-11-22 15:08:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-22 15:17:20 (GMT) |
commit | 6d604c4972d744defe783e7a5f9fbf478eee2dfe (patch) | |
tree | 182754bf66de0c913a6dfc93e822333d29ae23e1 /Help | |
parent | 74a0359ee6ef2aee60a9f9300817e6d9ef87bd57 (diff) | |
download | CMake-6d604c4972d744defe783e7a5f9fbf478eee2dfe.zip CMake-6d604c4972d744defe783e7a5f9fbf478eee2dfe.tar.gz CMake-6d604c4972d744defe783e7a5f9fbf478eee2dfe.tar.bz2 |
try_compile: Honor CMAKE_WARN_DEPRECATED in test project
This causes the `-Wno-deprecated` option to be honored even inside a
`try_compile` test project, which is needed to suppress all deprecation
warnings as the option documents.
Closes: #16446
Diffstat (limited to 'Help')
-rw-r--r-- | Help/release/dev/try_compile-honor-CMAKE_WARN_DEPRECATED.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Help/release/dev/try_compile-honor-CMAKE_WARN_DEPRECATED.rst b/Help/release/dev/try_compile-honor-CMAKE_WARN_DEPRECATED.rst new file mode 100644 index 0000000..9e13575 --- /dev/null +++ b/Help/release/dev/try_compile-honor-CMAKE_WARN_DEPRECATED.rst @@ -0,0 +1,6 @@ +try_compile-honor-CMAKE_WARN_DEPRECATED +--------------------------------------- + +* The :command:`try_compile` command source file signature now + honors the :variable:`CMAKE_WARN_DEPRECATED` variable value + in the generated test project. |