Skip to content

Commit

Permalink
update version to eliminate make compatibility warning
Browse files Browse the repository at this point in the history
cmake 3.0 came out in June 2014 and seems to be a good new minimum threshold, 2.8 has been removed from the documentation links.

https://cmake.org/cmake/help/latest/release/index.html
  • Loading branch information
willie authored and jbaldwin committed Nov 25, 2023
1 parent 97373a1 commit 11e4611
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 2.8)
cmake_minimum_required(VERSION 3.0)
project(cappuccino CXX)

# Set the githooks directory to auto format and update the readme.
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 2.8)
cmake_minimum_required(VERSION 3.0)
project(cappuccino_examples CXX)

### allow_example ###
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.0)
project(libcappuccino_tests)

set(LIBCAPPUCCINO_TEST_SOURCE_FILES
Expand Down

0 comments on commit 11e4611

Please sign in to comment.