diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-12-20 20:18:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-20 20:18:40 +0100 |
| commit | dad309d7fca5479ce936f320911df2221a78e43c (patch) | |
| tree | e64bb71996b87300e261ea0771ea579c90c449a2 /test | |
| parent | d3bd73b2143eb0b75306c4da31cf1d92424432f3 (diff) | |
| parent | 30369451f44bd7696932b02ce38168864c4eb872 (diff) | |
| download | PROJ-dad309d7fca5479ce936f320911df2221a78e43c.tar.gz PROJ-dad309d7fca5479ce936f320911df2221a78e43c.zip | |
Merge pull request #2980 from rouault/cmake_warn_googletest
CMake: fix warning with external googletest
Diffstat (limited to 'test')
| -rw-r--r-- | test/googletest/CMakeLists.txt.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/googletest/CMakeLists.txt.in b/test/googletest/CMakeLists.txt.in index b558e203..63413c0a 100644 --- a/test/googletest/CMakeLists.txt.in +++ b/test/googletest/CMakeLists.txt.in @@ -1,12 +1,12 @@ # Source https://github.com/google/googletest/blob/master/googletest/README.md -cmake_minimum_required(VERSION 2.8.2) # minimum version for ExternalProject_Add +cmake_minimum_required(VERSION 2.8.12) project(googletest-download NONE) include(ExternalProject) ExternalProject_Add(googletest - URL https://github.com/google/googletest/archive/release-1.8.1.zip - URL_HASH SHA1=7b41ea3682937069e3ce32cb06619fead505795e + URL https://github.com/google/googletest/archive/release-1.11.0.zip + URL_HASH SHA1=9ffb7b5923f4a8fcdabf2f42c6540cce299f44c0 DOWNLOAD_NO_PROGRESS ON SOURCE_DIR "${PROJ_BINARY_DIR}/googletest-src" BINARY_DIR "${PROJ_BINARY_DIR}/googletest-build" |
