There is a newer version of the record available.

Published November 9, 2021 | Version v2.12.1
Software Open

GEOS-ESM/MAPL: MAPL 2.12.1

Description

This release of MAPL fixes some CMake logic in with find_package() versioning.

The issue is that the:

if(NOT TARGET GFTL::gftl)
  # MAPL currently requires at least GFTL 1.5.1
  find_package(GFTL 1.5.1 REQUIRED)
endif()

code was being handicapped if someone managed to make a GFTL::gftl target before this call. Normally, calling find_package() multiple times will take care of this, but in this case it was "skipped". So an explicit version check for gFTL is added to the other side of this if() test.

From CHANGELOG.md Fixed
  • Fixes #1186. Fragile CMake logic for checking minimum version requirements for gFTL.
What's Changed

Full Changelog: https://github.com/GEOS-ESM/MAPL/compare/v2.12.0...v2.12.1

Files

GEOS-ESM/MAPL-v2.12.1.zip

Files (1.6 MB)

Name Size Download all
md5:9ba9e99dd11c9be9d59d4561cadb09f3
1.6 MB Preview Download

Additional details

Related works