From 391e6f414da34663f463e5a2c31caa70ca5efeac Mon Sep 17 00:00:00 2001 From: Willem Deconinck Date: Tue, 9 Jan 2024 11:18:32 +0100 Subject: [PATCH] Fix ecbuild-2 deprecation warning (#97) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 40e3c12ae..f375e67f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -176,7 +176,7 @@ endif() ecbuild_add_option( FEATURE CURL DESCRIPTION "Curl library for transfering data with URLs" - REQUIRED_PACKAGES "CURL VERSION 7.20" ) + REQUIRED_PACKAGES "CURL 7.20" ) if(HAVE_CURL) ecbuild_info("Curl version ${CURL_VERSION_STRING} -- libs [${CURL_LIBRARIES}] incs [${CURL_INCLUDE_DIRS}]")