From 21a25b140b1df5c2af0f4b14ecc1a7daa4632fdc Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Mon, 22 Apr 2024 11:35:17 -0700 Subject: [PATCH] Require cmake version 3.22.1 Part of gazebosim/gz-cmake#350. Signed-off-by: Steve Peters --- CMakeLists.txt | 2 +- examples/using_cli/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 271a48e..8fee2d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) +cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR) #============================================================================ # Initialize the project diff --git a/examples/using_cli/CMakeLists.txt b/examples/using_cli/CMakeLists.txt index a1a5293..837c3d8 100644 --- a/examples/using_cli/CMakeLists.txt +++ b/examples/using_cli/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5 FATAL_ERROR) +cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR) project(gz-utils-cli-demo) # Find the Gazebo Libraries used directly by the example