From 2b7db7a1b5eafb4dcf21f08e40b6f65f59da442b Mon Sep 17 00:00:00 2001 From: Nissim Armand Ben Danan <121024835+NissimBendanan@users.noreply.github.com> Date: Mon, 31 Mar 2025 19:53:30 +0300 Subject: [PATCH 1/2] Update CMakeLists.txt update minimum version of cmake now that version 3.5 of cmake has been deprecated --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f53724a0..aa89ec68 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # CMake configuration for linuxdeployqt # Not meant to replace the qmake build system, but for use with CMake based IDEs. -cmake_minimum_required(VERSION 3.2) +cmake_minimum_required(VERSION 3.5) project(linuxdeployqt) From b095ea528a8de5047bb7002205b5ca63ad0d03b6 Mon Sep 17 00:00:00 2001 From: Nissim Armand Ben Danan <121024835+NissimBendanan@users.noreply.github.com> Date: Wed, 2 Apr 2025 10:54:23 +0300 Subject: [PATCH 2/2] Update CMakeLists.txt update minimum version of cmake to 3.10 - version < 3.5 have been deprecated - version < 3.10 will be next removed --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aa89ec68..6b7f20bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # CMake configuration for linuxdeployqt # Not meant to replace the qmake build system, but for use with CMake based IDEs. -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.10) project(linuxdeployqt)