From b40e9c41a9882d072ffa178cf056a4bd7ce7a253 Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Fri, 23 Aug 2024 10:18:51 -0700 Subject: [PATCH] Require cmake 3.22.1 Part of gazebosim/gz-cmake#350. Signed-off-by: Steve Peters --- CMakeLists.txt | 2 +- example/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d9f86125..30d4e552 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR) #============================================================================ # Initialize the project diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index 8d224134..2f2df6d6 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8 FATAL_ERROR) +cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR) project(fuel-tools-examples)