From d3c58eb42dc57c6fa1efc1a127240cf2e709a7d9 Mon Sep 17 00:00:00 2001 From: mosfet80 <10235105+mosfet80@users.noreply.github.com> Date: Fri, 5 Dec 2025 16:17:48 +0100 Subject: [PATCH] fix cmake deprecation cmake version < then 3.10 is deprecated --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e08aa6..3a88c8d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.20) project(moveit_visual_tools) find_package(moveit_common REQUIRED)