hdf5/utils/tools/CMakeLists.txt
rawarren 720ddb20f3
Add support for parallel tools based on the 3rd party library mpiFileUtils (libMFU) … (#1177)
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>
2021-11-29 15:25:23 -06:00

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()