This is an automated email from the ASF dual-hosted git repository.
gehafearless pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git
The following commit(s) were added to refs/heads/master by this push:
new b8573427e fix(cmake): increase the minimum required version of cmake
to 3.24.0 (#1928)
b8573427e is described below
commit b8573427e18fa086daff23254936ac07b975e7fd
Author: Dan Wang <[email protected]>
AuthorDate: Mon Mar 4 11:05:55 2024 +0800
fix(cmake): increase the minimum required version of cmake to 3.24.0 (#1928)
#1927
Since DOWNLOAD_EXTRACT_TIMESTAMP was introduced in version 3.24,
the minimum required version of cmake should be increased from 3.11.0 to
3.24.0. The document of the website would also be updated.
---
CMakeLists.txt | 2 +-
thirdparty/CMakeLists.txt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 12c87dadd..48a9da245 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-cmake_minimum_required(VERSION 3.11.0)
+cmake_minimum_required(VERSION 3.24.0)
project(pegasus)
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
diff --git a/thirdparty/CMakeLists.txt b/thirdparty/CMakeLists.txt
index fb628986a..da917323c 100644
--- a/thirdparty/CMakeLists.txt
+++ b/thirdparty/CMakeLists.txt
@@ -17,7 +17,7 @@
# under the License.
##############################################################################
-cmake_minimum_required(VERSION 3.11.0)
+cmake_minimum_required(VERSION 3.24.0)
project(pegasus_thirdparties)
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]