diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-05-09 19:29:44 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-05-09 19:29:44 (GMT) |
commit | 37c27afde06c02416b6cc8bf518fea534aef0af6 (patch) | |
tree | 043fe9bcc9a2522bfe5ccabbaf1e67570611effe /hl/c++/test | |
parent | dcc66a4f157ace0858b788228550f3e104df3242 (diff) | |
download | hdf5-37c27afde06c02416b6cc8bf518fea534aef0af6.zip hdf5-37c27afde06c02416b6cc8bf518fea534aef0af6.tar.gz hdf5-37c27afde06c02416b6cc8bf518fea534aef0af6.tar.bz2 |
Fix MPI on Windows by adding MPI include folder
Diffstat (limited to 'hl/c++/test')
-rw-r--r-- | hl/c++/test/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/c++/test/CMakeLists.txt b/hl/c++/test/CMakeLists.txt index 3b5384a..68c049c 100644 --- a/hl/c++/test/CMakeLists.txt +++ b/hl/c++/test/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.10) project (HDF5_HL_CPP_TEST CXX) add_executable (hl_ptableTest ${HDF5_HL_CPP_TEST_SOURCE_DIR}/ptableTest.cpp) -target_include_directories(hl_ptableTest PRIVATE "${HDF5_HL_SRC_DIR}/test;${HDF5_SRC_DIR};${HDF5_BINARY_DIR}") +target_include_directories(hl_ptableTest PRIVATE "${HDF5_HL_SRC_DIR}/test;${HDF5_SRC_DIR};${HDF5_BINARY_DIR};$<$<BOOL:${HDF5_ENABLE_PARALLEL}>:${MPI_C_INCLUDE_DIRS}>") TARGET_C_PROPERTIES (hl_ptableTest STATIC) target_link_libraries (hl_ptableTest PRIVATE ${HDF5_LIB_TARGET} |