Skip to content

Commit

Permalink
fix(cmake): increase the minimum required version of cmake to 3.24.0 (a…
Browse files Browse the repository at this point in the history
…pache#1928)

apache#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.
  • Loading branch information
empiredan authored Mar 4, 2024
1 parent dfd4f0d commit b857342
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit b857342

Please sign in to comment.