mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
6d4d0fb13d
* Move test utilities to utils/test folder * Fix makefile assignment * Add new dir * add new folder * Correct copied makefile * Fix dir typo * Add missing include dir * Remove unnecessary lib link * Correct dependent dirs * Fix conditional checks * Disable test if not built * fix path to executable * Use fixture for swmr_vfd check * Add release note * Correct shell tests and c++ flag warning * Update autotools c++ 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 ()
|