From b047f46e2c1ce06d37b3bfa444b4a90063b4fa73 Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Wed, 19 Jul 2023 09:20:14 -0400 Subject: [PATCH] {cmake} Fix deprecation warning by updating min version to 3.5 With CMake 3.27, we get a deprecation warning: "Compatibility with CMake < 3.5 will be removed from a future version of CMake. Update the VERSION argument value or use a ... suffix to tell CMake that the project does not need compatibility with older versions." Bump min version to 3.5 to remove warning. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 82894b9..9c866c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.4) +cmake_minimum_required(VERSION 3.5) # Policy configuration; this *MUST* be specified before project is defined if(POLICY CMP0091)