Skip to content

Commit

Permalink
Merge branch 'devel' into 'master'
Browse files Browse the repository at this point in the history
Fix CMake policy problem and bump version for next minor release

See merge request tuda-sc/projects/metacg!166
  • Loading branch information
TimHeldmann committed Oct 23, 2024
2 parents 10f77c4 + dcf2b68 commit e48070b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -22,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}
Expand Down

0 comments on commit e48070b

Please sign in to comment.