summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CommandLine
diff options
context:
space:
mode:
authorMichael Scott <michael.scott250@gmail.com>2015-11-29 13:34:07 (GMT)
committerBrad King <brad.king@kitware.com>2015-12-01 15:22:51 (GMT)
commitaac633d5e5765bb6b51e31364325ae7d916f021c (patch)
treee7cd3773e3936f6af088416645cb6cde7992fc2d /Tests/RunCMake/CommandLine
parente8974b62d7883adf100d4c6ad90a0fbf682aaa91 (diff)
downloadCMake-aac633d5e5765bb6b51e31364325ae7d916f021c.zip
CMake-aac633d5e5765bb6b51e31364325ae7d916f021c.tar.gz
CMake-aac633d5e5765bb6b51e31364325ae7d916f021c.tar.bz2
Explicitly enable deprecated warnings by default.
Explicitly enable deprecated warnings by default, via the cmake::GetSuppressDeprecatedWarnings method, which signals suppression is turned off unless the CMake variables are set as required. Add tests and update the documentation for the new functionality.
Diffstat (limited to 'Tests/RunCMake/CommandLine')
-rw-r--r--Tests/RunCMake/CommandLine/RunCMakeTest.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/RunCMake/CommandLine/RunCMakeTest.cmake b/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
index efe143e..6b4b384 100644
--- a/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
+++ b/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
@@ -157,6 +157,9 @@ unset(RunCMake_TEST_OPTIONS)
# Dev warnings should be on by default
run_cmake(Wdev)
+# Deprecated warnings should be on by default
+run_cmake(Wdeprecated)
+
# Conflicting -W options should honor the last value
set(RunCMake_TEST_OPTIONS -Wno-dev -Wdev)
run_cmake(Wdev)