From 45b249e33d72dd84d3288e86334e2494746d9d93 Mon Sep 17 00:00:00 2001 From: JJ <3617814+joligario@users.noreply.github.com> Date: Fri, 8 Dec 2023 15:48:59 -0500 Subject: [PATCH] [CMake] Update minimum version of CMake (#3743) ``` CMake Deprecation Warning at client_files/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 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. ``` --- client_files/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_files/CMakeLists.txt b/client_files/CMakeLists.txt index fe377ec9f..d4b5962e3 100644 --- a/client_files/CMakeLists.txt +++ b/client_files/CMakeLists.txt @@ -1,4 +1,4 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.2) +CMAKE_MINIMUM_REQUIRED(VERSION 3.5) add_subdirectory(import) add_subdirectory(export)