diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-12-01 19:36:23 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-12-04 17:36:29 (GMT) |
commit | 4a15b32a42f3f22773290e04f898d212e572dae0 (patch) | |
tree | b0ee62989fdc97f1da88bb5ac717760ec08955e5 /src | |
parent | 930a0b5d7c6933e0d216a016cfd29f2255e12433 (diff) | |
download | hdf5-4a15b32a42f3f22773290e04f898d212e572dae0.zip hdf5-4a15b32a42f3f22773290e04f898d212e572dae0.tar.gz hdf5-4a15b32a42f3f22773290e04f898d212e572dae0.tar.bz2 |
H5detect and H5make_libsettings need include folder
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b163b8a..ab06ce8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -849,6 +849,9 @@ endif () #----------------------------------------------------------------------------- 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 () @@ -863,6 +866,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 () |