Skip to content

Commit

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

Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters authored Feb 6, 2025
1 parent 4fc5ab1 commit bdcca3c
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 bdcca3c

Please sign in to comment.