From d43e48e9b7bf37dfa775596dfc83e22e81b344ad Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Wed, 17 Apr 2024 21:32:23 -0700 Subject: [PATCH] Require cmake version 3.22.1 Part of gazebosim/gz-cmake#350. Signed-off-by: Steve Peters --- CMakeLists.txt | 2 +- examples/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 439088a0b..2526df888 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/CMakeLists.txt b/examples/CMakeLists.txt index 3a532ee2c..c68d89487 100644 --- a/examples/CMakeLists.txt +++ b/examples/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-math-examples)