From 6cb3c30f6ec204326d72807a508e5661bee9b290 Mon Sep 17 00:00:00 2001 From: Peter Arzt Date: Tue, 15 Oct 2024 15:28:16 +0200 Subject: [PATCH 1/3] Incorporate rel/staging v0.7.0 Incorporates the hotfix commits from master in devel, so that we can merge without conflicts. (The changes are actually already contained as they have been cherry-picked.) From f640947ed9563e6418bcd151f13783c741e1ac64 Mon Sep 17 00:00:00 2001 From: "Heldmann, Tim" Date: Wed, 23 Oct 2024 12:26:24 +0200 Subject: [PATCH 2/3] Fix CMake policy to work with older CMake Versions than 3.24 --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c1c2103..646e494 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,9 @@ cmake_minimum_required(VERSION 3.16) # Choose modern CMake behavior when extracting archives -cmake_policy(SET CMP0135 NEW) +if(POLICY CMP0135) + cmake_policy(SET CMP0135 NEW) +endif() # Require out-of-source builds (taken from # https://hsf-training.github.io/hsf-training-cmake-webpage/07-commonproblems/index.html) From 4eb916a8e3cb5739e9bd61920b685c1047420f21 Mon Sep 17 00:00:00 2001 From: "Heldmann, Tim" Date: Wed, 23 Oct 2024 12:40:26 +0200 Subject: [PATCH 3/3] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 646e494..c5dbb28 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ endif() # End of require out-of-source builds # Project information -set(METACG_VERSION 0.7.0) +set(METACG_VERSION 0.7.1) project( MetaCG VERSION ${METACG_VERSION}