diff options
author | Michael Hirsch <scivision@users.noreply.gitlab.kitware.com> | 2022-11-06 19:02:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-11-07 21:22:31 (GMT) |
commit | 9e3f1723ff931c07ca18e1d3256ba2063e7b4b86 (patch) | |
tree | 1e39a0ced87ef648c7c7abab1b0706a6c1d1a8eb /Tests/CMakeOnly | |
parent | 890d44792307134b41274b52cd972e4944af7d36 (diff) | |
download | CMake-9e3f1723ff931c07ca18e1d3256ba2063e7b4b86.zip CMake-9e3f1723ff931c07ca18e1d3256ba2063e7b4b86.tar.gz CMake-9e3f1723ff931c07ca18e1d3256ba2063e7b4b86.tar.bz2 |
Find{BZip2,LibLZMA,ZLIB}: use *_VERSION as modern CMake
The old *_VERSION_STRING is silently left set for backward compat.
Diffstat (limited to 'Tests/CMakeOnly')
-rw-r--r-- | Tests/CMakeOnly/AllFindModules/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CMakeOnly/AllFindModules/CMakeLists.txt b/Tests/CMakeOnly/AllFindModules/CMakeLists.txt index 0907d03..c990eb4 100644 --- a/Tests/CMakeOnly/AllFindModules/CMakeLists.txt +++ b/Tests/CMakeOnly/AllFindModules/CMakeLists.txt @@ -96,8 +96,8 @@ foreach(VTEST ALSA ARMADILLO BZIP2 CUPS CURL EXPAT FREETYPE GETTEXT GIT HG check_version_string(${VTEST} ${VTEST}_VERSION_STRING) endforeach() -foreach(VTEST BISON Boost CUDA DOXYGEN FLEX GIF GTK2 - HDF5 JPEG LibArchive OPENSCENEGRAPH Ruby RUBY SWIG Protobuf) +foreach(VTEST BISON Boost BZIP2 CUDA DOXYGEN FLEX GIF GTK2 + HDF5 JPEG LibArchive LIBLZMA OPENSCENEGRAPH Ruby RUBY SWIG Protobuf ZLIB) check_version_string(${VTEST} ${VTEST}_VERSION) endforeach() |