From a21598464eac5150b48dffdc8da537428eb920d5 Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Tue, 7 Jan 2025 17:48:51 +0100 Subject: [PATCH] CMake: Bump minimum version Avoids the deprecation message stating support for version<3.10 will become obsolete --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 88b6309..9f80a5a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # Root CMake file for nanoflann # ---------------------------------------------------------------------------- -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.10) # Extract library version into "NANOFLANN_VERSION" # -----------------------------------------------------