Files
hdf5/utils/CMakeLists.txt
Allen Byrne 25ef191f43 1.12 Merge Move test utilities to utils/test folder #1109 (#1110)
* Merge Move test utilities to utils/test folder #1109

* Merge Correct shell tests and c++ flag warning

* Fix typo
2021-10-21 16:09:09 -05:00

12 lines
229 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 ()