From 3fac7d2045fc3e369e6ad634a7b0adb65e41056f Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Fri, 29 Nov 2024 15:25:22 +0100 Subject: [PATCH] Add message in CMake for download of OpenVDS --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a1322aa8c7..59e68133bf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -393,6 +393,8 @@ endif() # OpenVDS seismic file access # ############################################################################## +message(STATUS "Starting download of external library OpenVDS ...") + if(MSVC) FetchContent_Declare( openvds @@ -406,6 +408,7 @@ else() endif() FetchContent_MakeAvailable(openvds) +message(STATUS "... completed download of external library OpenVDS") set(RESINSIGHT_OPENVDS_API_DIR ${openvds_SOURCE_DIR}) message(STATUS "Using OpenVDS api from : ${RESINSIGHT_OPENVDS_API_DIR}")