* Merge Move test utilities to utils/test folder #1109 * Merge Correct shell tests and c++ flag warning * Fix typo
12 lines
229 B
CMake
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 ()
|