Skip to content

Commit

Permalink
Correct CMake command and example packaging (#3888)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored Dec 8, 2023
1 parent 92ff840 commit 4f01fb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeInstallation.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ if (HDF5_PACK_EXAMPLES)
)

install (
DIRECTORY ${HDF5_BINARY_DIR}/HDF5Examples
DIRECTORY ${HDF5_SOURCE_DIR}/HDF5Examples
DESTINATION ${HDF5_INSTALL_DATA_DIR}
USE_SOURCE_PERMISSIONS
COMPONENT hdfdocuments
Expand Down
4 changes: 2 additions & 2 deletions tools/test/h5copy/CMakeTests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@
COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:h5copy${tgt_file_ext}> -i ./testfiles/${infile} -o ./testfiles/${testname}.out.h5 -v -s ${psparam} -d ${pdparam}
)
set_tests_properties (H5COPY-${testname}-prefill PROPERTIES DEPENDS H5COPY-${testname}-clear-objects)
if ("" MATCHES "${HDF5_DISABLE_TESTS_REGEX}")
set_tests_properties ( PROPERTIES DISABLED true)
if ("H5COPY-${testname}-prefill" MATCHES "${HDF5_DISABLE_TESTS_REGEX}")
set_tests_properties (H5COPY-${testname}-prefill PROPERTIES DISABLED true)
endif ()

add_test (
Expand Down

0 comments on commit 4f01fb3

Please sign in to comment.