From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Sat, 28 Dec 2024 18:28:37 +0000 (+0100) Subject: Update minimum cmake version to 3.10 (#274) X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~10^2~1^2~6 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ed9d83734693262c2731f41122fa4638b78cc0e0;p=utf8proc.git Update minimum cmake version to 3.10 (#274) This is to prevent 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 a ... suffix to tell CMake that the project does not need compatibility with older versions. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d66523..d0bb305 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.5) +cmake_minimum_required (VERSION 3.10) include (utils.cmake)