From d8b3a06fefd7a0d9b4092da5da8ac2d4fef9b4ba Mon Sep 17 00:00:00 2001 From: s-ol Date: Mon, 18 Aug 2025 16:24:44 +0200 Subject: [PATCH 1/2] fix CMake not finding MPI --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d0065b17a..4e4d0bef6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,7 @@ find_package( VTK REQUIRED CommonDataModel CommonExecutionModel freetype + mpi ) message(STATUS "VTK ${VTK_VERSION} found") find_package( RapidJSON REQUIRED ) From 0b60a023f992f9b9afd7b059b72cc8350c1132db Mon Sep 17 00:00:00 2001 From: AU Date: Tue, 19 Aug 2025 19:20:51 +0200 Subject: [PATCH 2/2] Try with OPTIONAL_COMPONENTS --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e4d0bef6..21c2edf95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,7 @@ find_package( VTK REQUIRED CommonDataModel CommonExecutionModel freetype + OPTIONAL_COMPONENTS mpi ) message(STATUS "VTK ${VTK_VERSION} found")