diff options
-rw-r--r-- | libtransport/third-party/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libtransport/third-party/CMakeLists.txt b/libtransport/third-party/CMakeLists.txt index bcda41c1e..25c6f7c20 100644 --- a/libtransport/third-party/CMakeLists.txt +++ b/libtransport/third-party/CMakeLists.txt @@ -67,6 +67,11 @@ if (ENABLE_RELY) ) endif() +# Avoid warning about DOWNLOAD_EXTRACT_TIMESTAMP in CMake 3.24: +if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0") + cmake_policy(SET CMP0135 NEW) +endif() + FetchContent_Declare( glog URL https://github.com/google/glog/archive/refs/tags/v0.5.0.zip |