Skip to content

Commit

Permalink
Require cmake 3.10.2 for consistency (#162) (#164)
Browse files Browse the repository at this point in the history
A more recent version of cmake is already required for
other Fortress dependencies, such as ign-cmake2, so
increase the required version here to fix a warning.

Signed-off-by: Steve Peters <[email protected]>
(cherry picked from commit bdcca3c)
(reworded to refer to Fortress instead of Harmonic)

Co-authored-by: Steve Peters <[email protected]>
  • Loading branch information
mergify[bot] and scpeters authored Feb 10, 2025
1 parent f1937bf commit d372d66
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 3.5.1 FATAL_ERROR)
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)

#============================================================================
# Initialize the project
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.5.1 FATAL_ERROR)
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)

project(examples)

Expand Down
2 changes: 1 addition & 1 deletion examples/plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.5.1 FATAL_ERROR)
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)

# Each source file in this directory is meant to be compiled into a plugin

Expand Down

0 comments on commit d372d66

Please sign in to comment.