Skip to content

Commit 68f1166

Browse files
author
Charles PIGNEROL
committed
Version 5.4.3 dated 06/18/24. MPI dependency fix.
1 parent 29660c2 commit 68f1166

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

cmake/version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
set (VTK_CONTRIB_MAJOR_VERSION "5")
66
set (VTK_CONTRIB_MINOR_VERSION "4")
7-
set (VTK_CONTRIB_RELEASE_VERSION "2")
7+
set (VTK_CONTRIB_RELEASE_VERSION "3")
88
set (VTK_CONTRIB_VERSION ${VTK_CONTRIB_MAJOR_VERSION}.${VTK_CONTRIB_MINOR_VERSION}.${VTK_CONTRIB_RELEASE_VERSION})
99

1010

src/VtkContrib/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ else (VTK_9)
6464
message (FATAL_ERROR "==> UTILISEZ -DVTK_7:BOOL=ON OU -DVTK_8:BOOL=ON OU -DVTK_9:BOOL=ON A LA LIGNE DE COMMANDE")
6565
endif (VTK_7)
6666

67-
find_package (MPI)
67+
if (MPI_mpi_LIBRARY)
68+
find_package (MPI)
69+
endif (MPI_mpi_LIBRARY)
6870

6971
file (GLOB HEADERS public/${CURRENT_PACKAGE_NAME}/*.h)
7072
file (GLOB CPP_SOURCES *.cpp)

versions.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 5.4.3 :
2+
===============
3+
4+
Retouche d�pendances cmake � MPI.
5+
6+
17
Version 5.4.2 :
28
===============
39

0 commit comments

Comments
 (0)