diff options
author | Brad King <brad.king@kitware.com> | 2014-07-22 13:31:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-22 13:36:57 (GMT) |
commit | fb95f820e06eb1933a7d3b71bc46eed4d5d25ee6 (patch) | |
tree | 8d5067f34ea5f1d6feeab7f4050720c1ebc84e3d /Tests | |
parent | 23ec3738a0bafd23a9d37fc72e7183e8dc84a4ac (diff) | |
download | CMake-fb95f820e06eb1933a7d3b71bc46eed4d5d25ee6.zip CMake-fb95f820e06eb1933a7d3b71bc46eed4d5d25ee6.tar.gz CMake-fb95f820e06eb1933a7d3b71bc46eed4d5d25ee6.tar.bz2 |
Tests: Set policies in 'complex' tests
These tests cover the OLD behavior of some policies. Set them to
OLD to avoid warnings in the test output. Leave a comment that
explains why this is done here but not recommended in general.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/Complex/CMakeLists.txt | 15 | ||||
-rw-r--r-- | Tests/ComplexOneConfig/CMakeLists.txt | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/Tests/Complex/CMakeLists.txt b/Tests/Complex/CMakeLists.txt index 222250c..5e5eead 100644 --- a/Tests/Complex/CMakeLists.txt +++ b/Tests/Complex/CMakeLists.txt @@ -14,6 +14,21 @@ if(POLICY CMP0003) endif() endif() +# It is not recommended to set a policy to OLD, but this test +# covers the OLD behavior of some policies. +foreach(p + CMP0029 + CMP0032 + CMP0033 + CMP0034 + CMP0043 + CMP0050 + ) + if(POLICY ${p}) + cmake_policy(SET ${p} OLD) + endif() +endforeach() + # Test building without per-rule echo lines in Makefiles. set_property(GLOBAL PROPERTY RULE_MESSAGES OFF) diff --git a/Tests/ComplexOneConfig/CMakeLists.txt b/Tests/ComplexOneConfig/CMakeLists.txt index 3f17dcc..3b73e70 100644 --- a/Tests/ComplexOneConfig/CMakeLists.txt +++ b/Tests/ComplexOneConfig/CMakeLists.txt @@ -14,6 +14,21 @@ if(POLICY CMP0003) endif() endif() +# It is not recommended to set a policy to OLD, but this test +# covers the OLD behavior of some policies. +foreach(p + CMP0029 + CMP0032 + CMP0033 + CMP0034 + CMP0043 + CMP0050 + ) + if(POLICY ${p}) + cmake_policy(SET ${p} OLD) + endif() +endforeach() + # Test building without per-rule echo lines in Makefiles. set_property(GLOBAL PROPERTY RULE_MESSAGES OFF) |