diff options
author | Brad King <brad.king@kitware.com> | 2019-08-27 14:16:22 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-08-27 14:17:20 (GMT) |
commit | 8a8b2fa695c477dff1e801bc7094dd1ee3352713 (patch) | |
tree | 35e4c6899bb06d11fdc206f929fcdf3939a83249 /CMakeLists.txt | |
parent | 2a2c4cc722769f4206aa44ca43edcd94cbb21028 (diff) | |
parent | 752fa8be9d410907e1ecb80a6a21daacd1a666f9 (diff) | |
download | CMake-8a8b2fa695c477dff1e801bc7094dd1ee3352713.zip CMake-8a8b2fa695c477dff1e801bc7094dd1ee3352713.tar.gz CMake-8a8b2fa695c477dff1e801bc7094dd1ee3352713.tar.bz2 |
Merge topic 'libarchive-requirement'
752fa8be9d libarchive: We now require at least version 3.3.3
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3737
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index aa8a4c7..25f17aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -519,7 +519,7 @@ macro (CMAKE_BUILD_UTILITIES) #--------------------------------------------------------------------- # Build or use system libarchive for CMake and CTest. if(CMAKE_USE_SYSTEM_LIBARCHIVE) - find_package(LibArchive 3.1.0) + find_package(LibArchive 3.3.3) if(NOT LibArchive_FOUND) message(FATAL_ERROR "CMAKE_USE_SYSTEM_LIBARCHIVE is ON but LibArchive is not found!") endif() |