mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
* add cmake latest workflow with lukka/get-cmake@latest * Upgrade minimum CMake version to 3.26
13 lines
211 B
CMake
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()
|