mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-27 08:01:04 +08:00
720ddb20f3
Adds tool h5dwalk and configure options to enable building it. Co-authored-by: Richard Warren <Richard.Warren@hdfgroup.org> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Richard.Warren <richard.warren@jelly.ad.hdfgroup.org> Co-authored-by: Larry Knox <lrknox@hdfgroup.org>
13 lines
211 B
CMake
13 lines
211 B
CMake
cmake_minimum_required (VERSION 3.12)
|
|
project (HDF5_UTILS_TOOLS C)
|
|
|
|
|
|
if (HDF5_BUILD_PARALLEL_TOOLS)
|
|
add_subdirectory (h5dwalk)
|
|
endif()
|
|
|
|
#-- Add the tests
|
|
if (BUILD_TESTING)
|
|
add_subdirectory (test)
|
|
endif()
|