diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-01-05 20:30:11 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-01-05 20:30:11 (GMT) |
commit | 58a475d3fabba89a9fed2a22d3f0851c9933f650 (patch) | |
tree | 1591d3356924ffbd86e8d3b068b4ac2bc954b08f /testpar | |
parent | efa2a470c9d8cf2d584f6b22f5b80cd6687887d0 (diff) | |
download | hdf5-58a475d3fabba89a9fed2a22d3f0851c9933f650.zip hdf5-58a475d3fabba89a9fed2a22d3f0851c9933f650.tar.gz hdf5-58a475d3fabba89a9fed2a22d3f0851c9933f650.tar.bz2 |
Fix link_libs and static CRT fortran
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testpar/CMakeLists.txt b/testpar/CMakeLists.txt index 997d1a1..db61d35 100644 --- a/testpar/CMakeLists.txt +++ b/testpar/CMakeLists.txt @@ -30,7 +30,7 @@ set (testphdf5_SOURCES add_executable (testphdf5 ${testphdf5_SOURCES}) TARGET_NAMING (testphdf5 STATIC) TARGET_C_PROPERTIES (testphdf5 STATIC " " " ") -target_link_libraries (testphdf5 ${HDF5_TEST_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) +target_link_libraries (testphdf5 PUBLIC ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) target_link_libraries (testphdf5 PRIVATE ${MPI_C_LIBRARIES}) endif () @@ -40,7 +40,7 @@ MACRO (ADD_H5P_EXE file) add_executable (${file} ${HDF5_TEST_PAR_SOURCE_DIR}/${file}.c) TARGET_NAMING (${file} STATIC) TARGET_C_PROPERTIES (${file} STATIC " " " ") - target_link_libraries (${file} ${HDF5_TEST_LIB_TARGET} PUBLIC ${HDF5_LIB_TARGET}) + target_link_libraries (${file} PUBLIC ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) if (HDF5_ENABLE_PARALLEL AND MPI_C_FOUND) target_link_libraries (${file} PRIVATE ${MPI_C_LIBRARIES}) endif () |