From 054837bac7a65635fa01ffad83a6b8cfadf0ce8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 5 Nov 2023 18:45:46 +0100 Subject: [PATCH] Raise the minimum required version of CMake to 3.5. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- CMakeLists.txt | 2 +- template/commonCMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1a76174e..54b61978 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ # ################################################# -cmake_minimum_required( VERSION 3.1 ) +cmake_minimum_required( VERSION 3.5 ) ##### general package setup ##################### diff --git a/template/commonCMakeLists.txt b/template/commonCMakeLists.txt index b628bf05..72471757 100644 --- a/template/commonCMakeLists.txt +++ b/template/commonCMakeLists.txt @@ -12,7 +12,7 @@ # ################################################# -cmake_minimum_required( VERSION 3.1 ) +cmake_minimum_required( VERSION 3.5 ) ##### general package setup #####################