Skip to content

Commit

Permalink
Add ...3.25 to minimum cmake version to show support for new cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
alugowski committed Sep 9, 2023
1 parent 7602dd0 commit 1562c89
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.19) # needed for CheckSourceCompiles
cmake_minimum_required(VERSION 3.19...3.25) # needed for CheckSourceCompiles

# Read the version from fast_matrix_market.hpp
set(VERSION_HEADER_FILE include/fast_matrix_market/fast_matrix_market.hpp)
Expand Down
2 changes: 1 addition & 1 deletion dependencies/dragonbox/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
cmake_minimum_required(VERSION 3.14...3.25)

project(dragonbox
VERSION 1.1.3
Expand Down
2 changes: 1 addition & 1 deletion dependencies/fast_float/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.9...3.25)
project(fast_float VERSION 3.9.0 LANGUAGES CXX)

add_library(fast_float INTERFACE)
Expand Down
2 changes: 1 addition & 1 deletion dependencies/ryu/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.4)
cmake_minimum_required(VERSION 3.4...3.25)
project(ryu VERSION 2.0 LANGUAGES C)
include(GNUInstallDirs)

Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.11)
cmake_minimum_required(VERSION 3.11...3.25)
project(fmm_example VERSION 1.0.0)

# include fast_matrix_market
Expand Down

0 comments on commit 1562c89

Please sign in to comment.