Skip to content

Commit

Permalink
Change minimum CMake version to 3.5 (#354)
Browse files Browse the repository at this point in the history
Current CMake versions print warnings that CMake < 3.5 is deprecated and support for it will be removed soon. CMake 3.5.0 was released in December 2018, so this should not affect any reasonably up-to-date installation.
  • Loading branch information
CyanoKobalamyne authored Sep 14, 2024
1 parent 78ea259 commit 158bfaf
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
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.5)

project(pono)

Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.5)

project(googletest-download NONE)

Expand Down

0 comments on commit 158bfaf

Please sign in to comment.