Published November 9, 2021
| Version v2.12.1
Software
Open
GEOS-ESM/MAPL: MAPL 2.12.1
Authors/Creators
- 1. SSAI/GMAO
- 2. Space Telescope Science Institute
- 3. Massachusetts Institute of Technology
- 4. NASA Goddard Space Flight Center
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.
CHANGELOG.md
Fixed
- Fixes #1186. Fragile CMake logic for checking minimum version requirements for gFTL.
- Fixes #1186 - cmake version logic. by @tclune in https://github.com/GEOS-ESM/MAPL/pull/1189
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
- Is supplement to
- https://github.com/GEOS-ESM/MAPL/tree/v2.12.1 (URL)