From ed86578c0359357495be0849df2f42991ece393f Mon Sep 17 00:00:00 2001 From: Michael Baentsch <57787676+baentsch@users.noreply.github.com> Date: Thu, 4 Jan 2024 11:05:47 +0100 Subject: [PATCH] Correct cmake version requirement (#1643) * upgrade minimum cmake version supported: cmake 3.15 is first version accepting object lists for TARGET_OBJECTS --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1694e4ec83..c492660bab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.5) +cmake_minimum_required (VERSION 3.15) # option() honors normal variables. # see: https://cmake.org/cmake/help/git-stage/policy/CMP0077.html if(POLICY CMP0077)