mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-09 07:32:32 +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>
17 lines
361 B
CMake
17 lines
361 B
CMake
cmake_minimum_required (VERSION 3.10)
|
|
project (HDF5_UTILS C)
|
|
|
|
if (BUILD_TESTING)
|
|
add_subdirectory (test)
|
|
endif ()
|
|
|
|
option (HDF5_BUILD_UTILS "Build HDF5 Utils" ON)
|
|
if (HDF5_BUILD_UTILS)
|
|
add_subdirectory (mirror_vfd)
|
|
endif ()
|
|
|
|
#-- Add the h5dwalk and test executables
|
|
if (HDF5_BUILD_PARALLEL_TOOLS AND HDF5_ENABLE_PARALLEL)
|
|
add_subdirectory(tools)
|
|
endif()
|