From b77ad5a5e5c16b1961273645c543dd3c9e24409a Mon Sep 17 00:00:00 2001 From: Oliver Heidmann <oliver.heidmann@mpimet.mpg.de> Date: Mon, 17 Feb 2025 11:49:09 +0100 Subject: [PATCH] added options for enableing internal libraries --- CMakeLists.txt | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9ae28f133..e432683fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,13 +17,30 @@ set_target_properties(Threads::Threads PROPERTIES THREADS_PREFER_PTHREAD_FLAG TR list(APPEND cdi_compile_defs HAVE_PTHREAD=1) # enable default internal libs -list(APPEND cdi_compile_defs - HAVE_LIBGRIB=1 - HAVE_LIBCGRIBEX=1 - HAVE_LIBEXTRA=1 - HAVE_LIBSERVICE=1 - HAVE_LIBIEG=1 -) +option(enable_libgrib "GRIB support [default=ON]" ON) +if(${enable_libgrib}) + list(APPEND cdi_compile_defs HAVE_LIBGRIB=1) +endif() + +option(enable_cgribex "Use the CGRIBEX library [default=ON]" ON) +if(${enable_cgribex}) + list(APPEND cdi_compile_defs LIBCGRIBEX=1) +endif() + +option(enable_extra "Use the extra library [default=ON]" ON) +if(${enable_extra}) + list(APPEND cdi_compile_defs HAVE_LIBEXTRA=1) +endif() + +option(enable_ieg "Use the extra library [default=ON]" ON) +if(${enable_ieg}) + list(APPEND cdi_compile_defs HAVE_LIBIEG=1) +endif() + +option(enable_service "Use the extra library [default=ON]" ON) +if(${enable_service}) + list(APPEND cdi_compile_defs HAVE_LIBSERVICE=1) +endif() # ecCodes find_package(eccodes) -- GitLab