diff options
author | Brad King <brad.king@kitware.com> | 2018-04-17 11:18:17 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-04-17 11:18:35 (GMT) |
commit | d9b4dcc91eefd9d045772619ee79fb6d4a43891e (patch) | |
tree | 8470768842a4bb87125c3f6684d8cfef1f8d12f5 /CMakeLists.txt | |
parent | 693021601310ee9ecbeff48fcf13e578f7c1ca42 (diff) | |
parent | f5f72ff844a3130568dbc62517401c5727fcf9ec (diff) | |
download | CMake-d9b4dcc91eefd9d045772619ee79fb6d4a43891e.zip CMake-d9b4dcc91eefd9d045772619ee79fb6d4a43891e.tar.gz CMake-d9b4dcc91eefd9d045772619ee79fb6d4a43891e.tar.bz2 |
Merge topic 'libuv_version_bump'
f5f72ff844 Explicitly require LibUV 1.10 or higher to build CMake
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1966
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 a27c662..3ee67cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -546,7 +546,7 @@ macro (CMAKE_BUILD_UTILITIES) #--------------------------------------------------------------------- # Build libuv library. if(CMAKE_USE_SYSTEM_LIBUV) - find_package(LibUV 1.0.0) + find_package(LibUV 1.10.0) if(NOT LIBUV_FOUND) message(FATAL_ERROR "CMAKE_USE_SYSTEM_LIBUV is ON but a libuv is not found!") |