From fe87f56f612237182ce76873ae090fcecc1af02e Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Sat, 7 Sep 2024 10:32:26 +0300 Subject: cmake: require cmake 3.11 The main CMakeLists.txt had cmake_minimum_required (VERSION 2.8). This made the cmake to show a deprecation notice that support of all versions below 3.5 will be dropped soon. The maximum required cmake version is 3.11 for the litehtml module. So let's set it as a minimum for all other modules. The FATAL_ERROR option is ignored in CMake >= 2.6. --- libs/libqrencode/src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/libqrencode/src') diff --git a/libs/libqrencode/src/CMakeLists.txt b/libs/libqrencode/src/CMakeLists.txt index bfc51ac224..3aa30f40db 100644 --- a/libs/libqrencode/src/CMakeLists.txt +++ b/libs/libqrencode/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1.0) +cmake_minimum_required(VERSION 3.11) project(QRencode VERSION 4.1.0 LANGUAGES C) -- cgit v1.2.3