From 93d9499c4d820a26afb4c5e8e04b119c9ebe18de Mon Sep 17 00:00:00 2001 From: Louis Sautier Date: Sun, 10 May 2026 19:12:28 +0200 Subject: [PATCH] CMake: raise cmake_minimum_required to 3.10 to fix warning Fixes the following warning: ``` CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 3.10 will be removed from a future version of CMake. Update the VERSION argument value. Or, use the ... syntax to tell CMake that the project requires at least but has been updated to work with policies introduced by or earlier. ``` --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b4c75c98..9cf82896 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.10) project(UnitTest++ VERSION 2.1.0) option(UTPP_USE_PLUS_SIGN