The export target logic in axom-config.cmake calls things like find_package(MPI REQUIRED) if conduit and MPI are both enabled. This seems excessive and poses an issue for any project that might only want to find the MPI package for certain languages. It also seems unnecessary in the event that MPI has already been found, which is likely if the project is using MPI locally.
|
find_package(MPI REQUIRED) |
The export target logic in axom-config.cmake calls things like
find_package(MPI REQUIRED)if conduit and MPI are both enabled. This seems excessive and poses an issue for any project that might only want to find the MPI package for certain languages. It also seems unnecessary in the event that MPI has already been found, which is likely if the project is using MPI locally.axom/src/cmake/axom-config.cmake.in
Line 160 in 21504d4