diff options
author | Alex Neundorf <neundorf@kde.org> | 2010-12-15 21:24:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-01-04 13:19:33 (GMT) |
commit | 7db8db5b7279a74aa4eab9cc1996a6a94131dc7e (patch) | |
tree | 6ae52f1f97d10175521c4db5428af28fa592e663 /Tests/FindPackageTest | |
parent | db44848f441673909e909755d7b833aa474791c7 (diff) | |
download | CMake-7db8db5b7279a74aa4eab9cc1996a6a94131dc7e.zip CMake-7db8db5b7279a74aa4eab9cc1996a6a94131dc7e.tar.gz CMake-7db8db5b7279a74aa4eab9cc1996a6a94131dc7e.tar.bz2 |
Improve documentation and messages for the new CMP0017
This patch incorporates the comments from Brad:
-some improvements to the documentation of CMP0017
-make the test QUIETLY search for zlib
Diffstat (limited to 'Tests/FindPackageTest')
-rw-r--r-- | Tests/FindPackageTest/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/FindPackageTest/CMakeLists.txt b/Tests/FindPackageTest/CMakeLists.txt index fb12121..f420f4b 100644 --- a/Tests/FindPackageTest/CMakeLists.txt +++ b/Tests/FindPackageTest/CMakeLists.txt @@ -8,7 +8,7 @@ LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}) # because otherwise FindPackageHandleStandardArgs.cmake from the current # directory is included (via CMAKE_MODULE_PATH). CMAKE_POLICY(SET CMP0017 NEW) -FIND_PACKAGE(ZLIB) +FIND_PACKAGE(ZLIB QUIET) # Look for a package that has a find module and may be found. FIND_PACKAGE(OpenGL QUIET) |