From 72c71a78d103b421755e7635ca725958268d4d3f Mon Sep 17 00:00:00 2001
From: Oliver Heidmann <oliver.heidmann@mpimet.mpg.de>
Date: Mon, 3 Mar 2025 12:01:09 +0100
Subject: [PATCH] if eccodes option enables: make eccodes required, removed not
 reachable else statements

---
 CMakeLists.txt | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 634242393..015d24df8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -50,11 +50,9 @@ endif()
 # ecCodes
 option(CDI_ECCODES "Use the eccodes library [default=ON]" ON)
 if(${CDI_ECCODES} OR eccodes_ROOT)
-  find_package(eccodes)
+  find_package(eccodes REQUIRED)
   if (${eccodes_FOUND})
     list(APPEND cdi_linked_libs eccodes)
-  else()
-    message(WARNING "eccodes not found, compiling without eccodes")
   endif ()
 endif()
 
@@ -69,8 +67,6 @@ if(${CDI_NETCDF} OR netCDF_ROOT )
       HAVE_NETCDF4=${netCDF_FOUND}
     )
     list(APPEND cdi_linked_libs netCDF::netcdf)
-  else()
-    message(WARNING "netcdf target not found, compiling without netcdf")
   endif ()
 endif()
 
-- 
GitLab