summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index a825958..616b53d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -613,6 +613,9 @@ set (H5_PRIVATE_HEADERS
#-----------------------------------------------------------------------------
add_executable (H5detect ${HDF5_SRC_DIR}/H5detect.c)
TARGET_C_PROPERTIES (H5detect STATIC " " " ")
+if (H5_HAVE_PARALLEL AND MPI_C_FOUND)
+ target_include_directories (H5detect PUBLIC ${MPI_C_INCLUDE_DIRS})
+endif ()
if (MSVC OR MINGW)
target_link_libraries (H5detect "ws2_32.lib")
endif ()
@@ -627,6 +630,9 @@ add_custom_command (
add_executable (H5make_libsettings ${HDF5_SRC_DIR}/H5make_libsettings.c)
TARGET_C_PROPERTIES (H5make_libsettings STATIC " " " ")
+if (H5_HAVE_PARALLEL AND MPI_C_FOUND)
+ target_include_directories (H5make_libsettings PUBLIC ${MPI_C_INCLUDE_DIRS})
+endif ()
if (MSVC OR MINGW)
target_link_libraries (H5make_libsettings "ws2_32.lib")
endif ()