diff options
author | Brad King <brad.king@kitware.com> | 2015-01-30 15:23:01 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-01-30 15:23:01 (GMT) |
commit | fa5f5667763988d7856b98227b5cf74bb42a8203 (patch) | |
tree | 8200d23e5c0215b4085d45accc40ea58ed3840a0 | |
parent | dea1631a8f48bebc7402739de58841b8cdf97b8b (diff) | |
parent | 3526daf5a2667d4bf8aee442d6e73f8b71ea6efc (diff) | |
download | CMake-fa5f5667763988d7856b98227b5cf74bb42a8203.zip CMake-fa5f5667763988d7856b98227b5cf74bb42a8203.tar.gz CMake-fa5f5667763988d7856b98227b5cf74bb42a8203.tar.bz2 |
Merge topic 'build-require-libarchive-3'
3526daf5 Require libarchive 3.0.0 or later
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ad1be8..e61621d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -336,7 +336,7 @@ macro (CMAKE_BUILD_UTILITIES) #--------------------------------------------------------------------- # Build or use system libarchive for CMake and CTest. if(CMAKE_USE_SYSTEM_LIBARCHIVE) - find_package(LibArchive) + find_package(LibArchive 3.0.0) if(NOT LibArchive_FOUND) message(FATAL_ERROR "CMAKE_USE_SYSTEM_LIBARCHIVE is ON but LibArchive is not found!") endif() |