From 50d794616ca78cb882bb25234bafbce835cced1a Mon Sep 17 00:00:00 2001 From: Dirk Vanden Boer Date: Mon, 18 Dec 2023 13:19:05 +0100 Subject: [PATCH] 0.14.4 --- CMakeLists.txt | 2 +- Changelog.txt | 8 ++++++ conda/cmake/FindGsl.cmake | 51 --------------------------------------- 3 files changed, 9 insertions(+), 52 deletions(-) delete mode 100644 conda/cmake/FindGsl.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index c8133f0..ffa434a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ if(GDX_IS_TOPLEVEL) set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/geodynamix) project(GeoDynamiX - VERSION 0.14.3 + VERSION 0.14.4 LANGUAGES C CXX ) set(CMAKE_EXPORT_COMPILE_COMMANDS 1) diff --git a/Changelog.txt b/Changelog.txt index 54ee997..d484071 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,3 +1,11 @@ +Release 0.14.4 +-------------- +Changes: +- Conda package build fixes +- mean function added to C++ API +- apply_mask_in_place function added to C++ API +- Update to gdal>=3 + Release 0.14.3 -------------- Changes: diff --git a/conda/cmake/FindGsl.cmake b/conda/cmake/FindGsl.cmake deleted file mode 100644 index 848ac55..0000000 --- a/conda/cmake/FindGsl.cmake +++ /dev/null @@ -1,51 +0,0 @@ -# FindGsl -# -------- -# -# Find the Guideline Support Library (GSL) includes. -# -# The Guideline Support Library (GSL) contains functions and types that -# are suggested for use by the C++ Core Guidelines maintained by the -# Standard C++ Foundation. -# -# Imported Targets -# ^^^^^^^^^^^^^^^^ -# -# If GSL is found, this module defines the following :prop_tgt:`IMPORTED` -# targets:: -# -# Gsl::Gsl - The main GSL library. -# -# Result Variables -# ^^^^^^^^^^^^^^^^ -# -# This module will set the following variables in your project:: -# -# Gsl_FOUND - True if GSL found on the local system -# -# Hints -# ^^^^^ -# -# Set ``Gsl_ROOT_DIR`` to a directory that contains a GSL installation. -# -# This script expects to find the GSL headers at ``$Gsl_ROOT_DIR/include/gsl``. - -include(FindPackageHandleStandardArgs) - -find_path(Gsl_INCLUDE_DIR - NAMES gsl/gsl - HINTS ${Gsl_ROOT_DIR}/include ${Gsl_INCLUDEDIR} -) - -find_package_handle_standard_args(Gsl - FOUND_VAR Gsl_FOUND - REQUIRED_VARS Gsl_INCLUDE_DIR -) - -mark_as_advanced(Gsl_ROOT_DIR Gsl_INCLUDE_DIR) - -if(Gsl_FOUND AND NOT TARGET Gsl::Gsl) - add_library(Gsl::Gsl INTERFACE IMPORTED) - set_target_properties(Gsl::Gsl PROPERTIES - INTERFACE_INCLUDE_DIRECTORIES "${Gsl_INCLUDE_DIR}" - ) -endif()