Skip to content

Commit

Permalink
v3: Do not determine MPI stack without MPI found
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 committed Nov 7, 2024
1 parent a8d689e commit f3512fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [3.53.1] - 2024-11-07

### Fixed

- Do not include `DetermineMPIStack` if MPI is not found

## [3.53.0] - 2024-11-05

### Added
Expand Down
4 changes: 3 additions & 1 deletion esma.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ include(math_libraries)
include(FindBaselibs)
include(DetermineSite)
find_package(GitInfo)
include(DetermineMPIStack)
if (MPI_FOUND)
include(DetermineMPIStack)
endif ()

### ESMA Support ###

Expand Down

0 comments on commit f3512fa

Please sign in to comment.