Skip to content

Commit

Permalink
Merge pull request #3 from LIHPC-Computational-Geometry/mpi-dep-fix
Browse files Browse the repository at this point in the history
Version 5.4.3 dated 06/18/24. MPI dependency fix.
  • Loading branch information
CharlesPignerol authored Jun 18, 2024
2 parents 7b8cc85 + 68f1166 commit d1a6568
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

set (VTK_CONTRIB_MAJOR_VERSION "5")
set (VTK_CONTRIB_MINOR_VERSION "4")
set (VTK_CONTRIB_RELEASE_VERSION "2")
set (VTK_CONTRIB_RELEASE_VERSION "3")
set (VTK_CONTRIB_VERSION ${VTK_CONTRIB_MAJOR_VERSION}.${VTK_CONTRIB_MINOR_VERSION}.${VTK_CONTRIB_RELEASE_VERSION})


4 changes: 3 additions & 1 deletion src/VtkContrib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ else (VTK_9)
message (FATAL_ERROR "==> UTILISEZ -DVTK_7:BOOL=ON OU -DVTK_8:BOOL=ON OU -DVTK_9:BOOL=ON A LA LIGNE DE COMMANDE")
endif (VTK_7)

find_package (MPI)
if (MPI_mpi_LIBRARY)
find_package (MPI)
endif (MPI_mpi_LIBRARY)

file (GLOB HEADERS public/${CURRENT_PACKAGE_NAME}/*.h)
file (GLOB CPP_SOURCES *.cpp)
Expand Down
6 changes: 6 additions & 0 deletions versions.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 5.4.3 :
===============

Retouche d�pendances cmake � MPI.


Version 5.4.2 :
===============

Expand Down

0 comments on commit d1a6568

Please sign in to comment.