From 4dc9422344802ccec4a3bdab736eb93af740c2da Mon Sep 17 00:00:00 2001 From: Christian Zimmermann Date: Fri, 7 Jun 2024 16:51:37 +0200 Subject: [PATCH] fix cmake error msg in mpi section --- src/opt/mpi/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opt/mpi/CMakeLists.txt b/src/opt/mpi/CMakeLists.txt index 6416c7c..699f331 100644 --- a/src/opt/mpi/CMakeLists.txt +++ b/src/opt/mpi/CMakeLists.txt @@ -3,7 +3,7 @@ find_package(MPI REQUIRED) if(MPI_FOUND) include_directories(${MPI_C_INCLUDE_DIRS}) else() - message(FATAL_ERROR "HDF5 not found") + message(FATAL_ERROR "MPI not found") endif() message(STATUS "mpi lib = ${MPI_C_LIBRARIES}") set(MPI_LIBS ${MPI_LIBRARIES})