Files
hdf5/utils/tools/CMakeLists.txt
Allen Byrne 63803d7115 allow better CMake version testing (#5727)
* add cmake latest workflow with lukka/get-cmake@latest
* Upgrade minimum CMake version to 3.26
2025-08-23 06:43:20 -05:00

13 lines
211 B
CMake

cmake_minimum_required (VERSION 3.26)
project (HDF5_UTILS_TOOLS C)
if (HDF5_BUILD_PARALLEL_TOOLS)
add_subdirectory (h5dwalk)
endif()
#-- Add the tests
if (BUILD_TESTING)
add_subdirectory (test)
endif()